File indexing completed on 2025-08-06 08:17:59
0001
0002
0003
0004
0005
0006
0007 #ifndef PHGENFIT_TOOLS_H
0008 #define PHGENFIT_TOOLS_H
0009
0010
0011 #include <memory>
0012 #include <vector>
0013
0014 namespace genfit
0015 {
0016 class AbsTrackRep;
0017 class StateOnPlane;
0018 class Track;
0019 class MeasuredStateOnPlane;
0020
0021 }
0022
0023 namespace PHGenFit
0024 {
0025 double extrapolateToCylinder(
0026 const genfit::MeasuredStateOnPlane* state,
0027 double radius, TVector3 line_point, TVector3 line_direction,
0028 const int pdg_code = 211, const int direction = 1,
0029 const int verbosity = 0);
0030
0031 }
0032
0033 #endif