Belle II Software  release-05-01-25
TGeoMaterialInterface.h
1 /* Copyright 2008-2014, Technische Universitaet Muenchen,
2  Authors: Christian Hoeppner & Sebastian Neubert & Johannes Rauch
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 
24 #ifndef genfit_TGeoMaterialInterface_h
25 #define genfit_TGeoMaterialInterface_h
26 
27 #include "AbsMaterialInterface.h"
28 
29 
30 namespace genfit {
31 
36 
37  public:
38 
41 
45  bool initTrack(double posX, double posY, double posZ,
46  double dirX, double dirY, double dirZ) override;
47 
48  Material getMaterialParameters() override;
49 
56  double findNextBoundary(const RKTrackRep* rep,
57  const M1x7& state7,
58  double sMax,
59  bool varField = true) override;
60 
61  // ClassDefOverride(TGeoMaterialInterface, 1);
62 
63  private:
64 };
65 
66 } /* End of namespace genfit */
69 #endif // genfit_TGeoMaterialInterface_h
genfit::AbsMaterialInterface
Abstract base class for geometry interfacing.
Definition: AbsMaterialInterface.h:39
genfit::TGeoMaterialInterface
AbsMaterialInterface implementation for use with ROOT's TGeoManager.
Definition: TGeoMaterialInterface.h:35
genfit
Defines for I/O streams used for error and debug printing.
Definition: AlignablePXDRecoHit.h:19
genfit::TGeoMaterialInterface::initTrack
bool initTrack(double posX, double posY, double posZ, double dirX, double dirY, double dirZ) override
Initialize the navigator at given position and with given direction.
Definition: TGeoMaterialInterface.cc:38
genfit::TGeoMaterialInterface::findNextBoundary
double findNextBoundary(const RKTrackRep *rep, const M1x7 &state7, double sMax, bool varField=true) override
Make a step (following the curvature) until step length sMax or the next boundary is reached.
Definition: TGeoMaterialInterface.cc:70
genfit::RKTrackRep
AbsTrackRep with 5D track parameterization in plane coordinates: (q/p, u', v', u, v)
Definition: RKTrackRep.h:72
genfit::RKMatrix< 1, 7 >
genfit::Material
Definition: Material.h:10