Class Reference for E1039 Core & Analysis Software
GenFitExtrapolator.h
Go to the documentation of this file.
1 /*
2 GenFitExtrapolator.h
3 
4 Class definition of GenFitExtrapolator, which is used to transport the track
5 through the detector and magnetic field and propagate the error matrix correctly.
6 The magnetic field integration and energy loss effect are included.
7 
8 This class will be used in the prediction step of Kalman filter.
9 
10 The whole algorithm is based on the Geant4e.
11 The detector construction is taken from GMC by Bryan Kerns.
12 
13 Author: Kun Liu, liuk@fnal.gov
14 Created: 10-13-2011
15 */
16 
17 #ifndef _GENFITEXTRAPOLATOR_H
18 #define _GENFITEXTRAPOLATOR_H
19 
20 #include <string>
21 #include <TMatrixD.h>
22 #include <TMatrixDSym.h>
23 #include <TVector3.h>
24 
25 #include <GlobalConsts.h>
26 
27 class TGeoManager;
28 class PHField;
29 
31 {
32 public:
35 
37  //bool init(std::string geometrySchema, double fMagStr = FMAGSTR, double kMagStr = KMAGSTR);
38  bool init(const PHField* field, const TGeoManager *geom);
39 
41  void setInitialStateWithCov(double z_in, TMatrixD& state_in, TMatrixD& cov_in);
42 
44  void setParticleType(int type);
45 
47  void getFinalStateWithCov(TMatrixD& state_out, TMatrixD& cov_out);
48  double getTravelLength() { return travelLength; }
49 
51  //void buildNumericalPropagator();
52  //void getNumericalPropagator(TMatrixD& prop);
53  void getPropagator(TMatrixD& prop);
54 
55  /*
56  * Extrapolate to a new surface z_out
57  * \param z_out target position, in cm
58  */
59  bool extrapolateTo(double z_out);
60 
62  double extrapolateToIP();
63 
65  void convertSVtoMP(double z, TMatrixD& state, TVector3& mom, TVector3& pos);
66  void convertMPtoSV(TVector3& mom, TVector3& pos, TMatrixD& state);
67 
70  void TRSDSC(int charge, TVector3 mom_input, TVector3 pos_input);
71  void TRSCSD(int charge, TVector3 mom_input, TVector3 pos_input);
72 
73  TMatrixD& getJacSD2SC() { return jac_sd2sc; }
74  TMatrixD& getJacSC2SD() { return jac_sc2sd; }
75 
77  void setPropCalc(bool option) { calcProp = option; }
78  void setLengthCalc(bool option) { calcLength = option; }
79 
80 
82  void TRGENFIT2LEGACY(int charge, TVector3 mom_input, TVector3 pos_input);
83  void TRLEGACY2GENFIT(int charge, TVector3 mom_input, TVector3 pos_input);
84 
85 
87  void print();
88 
89 private:
90 
92  static bool fullInit;
93 
95  int iParType;
96  enum PropDirection {Forward, Backward};
97  PropDirection direction;
98 
99 // G4String parType;
100 //
101 // ///Geant4 stuff
102 // G4ErrorPropagatorManager *g4eMgr;
103 // G4ErrorPropagatorData *g4eData;
104 // G4ErrorPlaneSurfaceTarget *g4eTarget;
105 // G4ErrorFreeTrajState *g4eState;
106 // G4ErrorMatrix g4eProp;
107 // G4ErrorMode g4eMode;
108 //
109 // ///Initial state
110 // G4ThreeVector pos_i;
111 // G4ThreeVector mom_i;
112 // G4ErrorTrajErr cov_i;
113 //
114 // ///Final state
115 // G4ThreeVector pos_f;
116 // G4ThreeVector mom_f;
117 // G4ErrorTrajErr cov_f;
118 
121  TVector3 pos_i;
122  TVector3 mom_i;
123  TMatrixDSym cov_i;
124 
126  TVector3 pos_f;
127  TVector3 mom_f;
128  TMatrixDSym cov_f;
129 
131  TMatrixD jac_sd2sc;
132  TMatrixD jac_sc2sd;
133 
135  bool calcProp;
136 
138  bool calcLength;
139  double travelLength;
140 
141 
143  TMatrixD jac_genfit2legacy;
144  TMatrixD jac_legacy2genfit;
145 
147  TMatrixD propM;
148 
149  TGeoManager* _tgeo_manager;
150 };
151 
152 #endif
TMatrixD & getJacSD2SC()
void setPropCalc(bool option)
External control of modes.
bool init(const PHField *field, const TGeoManager *geom)
Initialize geometry and physics.
void convertMPtoSV(TVector3 &mom, TVector3 &pos, TMatrixD &state)
void convertSVtoMP(double z, TMatrixD &state, TVector3 &mom, TVector3 &pos)
Transformation between the state vector and the mom/pos.
double extrapolateToIP()
Extrapolate to the primary vertex.
bool extrapolateTo(double z_out)
void TRSDSC(int charge, TVector3 mom_input, TVector3 pos_input)
void setParticleType(int type)
Set particle type.
void TRLEGACY2GENFIT(int charge, TVector3 mom_input, TVector3 pos_input)
void getPropagator(TMatrixD &prop)
Get the propagator.
void setLengthCalc(bool option)
void print()
Debug print.
void TRGENFIT2LEGACY(int charge, TVector3 mom_input, TVector3 pos_input)
Tranformation between GenFit and Legacy plane; Abi.
TMatrixD & getJacSC2SD()
void getFinalStateWithCov(TMatrixD &state_out, TMatrixD &cov_out)
Get the final state parameters and covariance.
void setInitialStateWithCov(double z_in, TMatrixD &state_in, TMatrixD &cov_in)
Set input initial state parameters.
void TRSCSD(int charge, TVector3 mom_input, TVector3 pos_input)
transient DST object for field storage and access
Definition: PHField.h:14