GFGeoMatManager.h
Go to the documentation of this file.
1 /* Copyright 2008-2009, Technische Universitaet Muenchen,
2  Authors: Christian Hoeppner & Sebastian Neubert
3 
4  This file is part of GENFIT.
5 
6  GENFIT is free software: you can redistribute it and/or modify
7  it under the terms of the GNU Lesser General Public License as published
8  by the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  GENFIT is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Lesser General Public License for more details.
15 
16  You should have received a copy of the GNU Lesser General Public License
17  along with GENFIT. If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 /** @addtogroup RKTrackRep
21  * @{
22  */
23 
24 #ifndef GFGEOMATMANAGER_H
25 #define GFGEOMATMANAGER_H
26 
27 #include"GFAbsGeoMatManager.h"
28 
29 
30 /** @brief Material and geometry interface via TGeoMaterial and gGeoManager
31  *
32  * @author Christian H&ouml;ppner (Technische Universit&auml;t M&uuml;nchen, original author)
33  * @author Sebastian Neubert (Technische Universit&auml;t M&uuml;nchen, original author)
34  * @author Johannes Rauch (Technische Universit&auml;t M&uuml;nchen, author)
35  *
36  *
37  *
38  *
39  *
40  */
41 namespace genf {
42 
44  public:
45  virtual ~GFGeoMatManager(){}
46  void getMaterialParameters(double& matDensity,
47  double& matZ,
48  double& matA,
49  double& radiationLength,
50  double& mEE);
51 
52  void initTrack(const double& posx,
53  const double& posy,
54  const double& posz,
55  const double& dirx,
56  const double& diry,
57  const double& dirz);
58 
59  double stepOrNextBoundary(const double& maxDist);
60 
61  // public:
62  //ClassDef(GFGeoMatManager,1)
63 
64 };
65 
66 } // namespace genf
67 #endif
68 
69 /** @} */
void getMaterialParameters(double &matDensity, double &matZ, double &matA, double &radiationLength, double &mEE)
Gets material parameters (density, Z, A, radiation length, mean excitation energy) ...
Generic Interface to magnetic fields in GENFIT.
Definition: GFAbsBField.h:35
double stepOrNextBoundary(const double &maxDist)
Makes a step, limited to next material boundary.
void initTrack(const double &posx, const double &posy, const double &posz, const double &dirx, const double &diry, const double &dirz)
Initializes the track.