Class Reference for E1039 Core & Analysis Software
GFTrack.h
Go to the documentation of this file.
1 #ifndef _GFTRACK_H
2 #define _GFTRACK_H
3 
4 #include <vector>
5 #include <memory>
6 
7 #include <GenFit/AbsTrackRep.h>
8 #include <GenFit/MeasuredStateOnPlane.h>
9 #include <GenFit/Track.h>
10 #include <GenFit/Tools.h>
11 
12 #include <TString.h>
13 #include <TVector3.h>
14 
15 #include "SRecEvent.h"
16 #include "FastTracklet.h"
17 #include "GFMeasurement.h"
18 
19 namespace SQGenFit
20 {
21 class GFTrack
22 {
23 public:
24  GFTrack();
25  GFTrack(SRecTrack& recTrack);
26  GFTrack(Tracklet& tracklet);
27  ~GFTrack();
28 
29  void setVerbosity(unsigned int v);
30  void setTracklet(Tracklet& tracklet, double z_reference = 590., bool wildseedcov = false);
31  void addMeasurements(std::vector<GFMeasurement*>& measurements);
32  void addMeasurement(GFMeasurement* measurement);
33 
34  double getChi2();
35  double getNDF();
36  int getCharge() { return _trkcand->getCharge(); };
38 
39  //The extrapolation is implemented for line, plane and point, but the update/filter is only implemeted
40  // for line and plane, user needs to be careful and pass correct measurement and cov to get sensible result
41  double extrapolateToLine(TVector3& endPoint1, TVector3& endPoint2, const int startPtID = 0);
42  double extrapolateToPlane(TVector3& pO, TVector3& pU, TVector3& pV, const int startPtID = 0);
43  double extrapolateToPoint(TVector3& point, bool update = false, const int startPtID = 0);
44  double updatePropState(const TVectorD& meas, const TMatrixDSym& V);
45  void getExtrapPosMomCov(TVector3& pos, TVector3& mom, TMatrixDSym& cov) { _propState->getPosMomCov(pos, mom, cov); }
46  void getExtrapPosMom(TVector3& pos, TVector3& mom) { _propState->getPosMom(pos, mom); }
47 
48  double swimToVertex(double z, TVector3* pos = nullptr, TVector3* mom = nullptr, TMatrixDSym* cov = nullptr);
49 
50  void checkConsistency() { _track->checkConsistency(); }
51 
52  void postFitUpdate(bool updateMeasurements = true);
54 
55  void print(unsigned int debugLvl = 0);
56 
57  genfit::Track* getGenFitTrack() { return _track; }
58  genfit::AbsTrackRep* getGenFitTrkRep() { return _trkrep; }
59 
60 private:
61  //Auxilary function to initialize the extrapolation/projection, should not be seen by external user
62  bool setInitialStateForExtrap(const int startPtID = 0);
63 
64  //interface with genfit operations
65  genfit::AbsTrackRep* _trkrep;
66  genfit::Track* _track;
67  std::vector<GFMeasurement*> _measurements;
68 
69  //container of the MSOP obtained from the SRecTrack
70  std::vector<genfit::MeasuredStateOnPlane> _fitstates;
71 
72  //Used for the propagation and hypothesis test
73  std::unique_ptr<genfit::MeasuredStateOnPlane> _propState;
74  std::unique_ptr<genfit::AbsMeasurement> _virtMeas;
75 
76  //Store the original track candidate information from track finding
77  Tracklet* _trkcand;
78  int _pdg;
79 
80 };
81 }
82 
83 #endif
double getNDF()
Definition: GFTrack.cxx:149
void print(unsigned int debugLvl=0)
Definition: GFTrack.cxx:467
double extrapolateToPlane(TVector3 &pO, TVector3 &pU, TVector3 &pV, const int startPtID=0)
Definition: GFTrack.cxx:205
void getExtrapPosMomCov(TVector3 &pos, TVector3 &mom, TMatrixDSym &cov)
Definition: GFTrack.h:45
void addMeasurements(std::vector< GFMeasurement * > &measurements)
Definition: GFTrack.cxx:119
void setVerbosity(unsigned int v)
Definition: GFTrack.cxx:114
void postFitUpdate(bool updateMeasurements=true)
Definition: GFTrack.cxx:385
int getNearestMeasurementID(GFMeasurement *meas)
Definition: GFTrack.cxx:161
double swimToVertex(double z, TVector3 *pos=nullptr, TVector3 *mom=nullptr, TMatrixDSym *cov=nullptr)
Definition: GFTrack.cxx:295
void addMeasurement(GFMeasurement *measurement)
Definition: GFTrack.cxx:128
SRecTrack getSRecTrack()
Definition: GFTrack.cxx:394
double extrapolateToLine(TVector3 &endPoint1, TVector3 &endPoint2, const int startPtID=0)
Definition: GFTrack.cxx:180
void getExtrapPosMom(TVector3 &pos, TVector3 &mom)
Definition: GFTrack.h:46
double getChi2()
Definition: GFTrack.cxx:137
void setTracklet(Tracklet &tracklet, double z_reference=590., bool wildseedcov=false)
Definition: GFTrack.cxx:338
double extrapolateToPoint(TVector3 &point, bool update=false, const int startPtID=0)
Definition: GFTrack.cxx:227
double updatePropState(const TVectorD &meas, const TMatrixDSym &V)
Definition: GFTrack.cxx:239
genfit::Track * getGenFitTrack()
Definition: GFTrack.h:57
int getCharge()
Definition: GFTrack.h:36
genfit::AbsTrackRep * getGenFitTrkRep()
Definition: GFTrack.h:58
void checkConsistency()
Definition: GFTrack.h:50
int getCharge() const
Return the charge (+1 or -1) of this tracklet.