Class Reference for E1039 Core & Analysis Software
GFMeasurement.h
Go to the documentation of this file.
1 #ifndef _GFMEASUREMENT_H
2 #define _GFMEASUREMENT_H
3 
4 #include <GenFit/WireMeasurement.h>
5 
6 #include "FastTracklet.h"
7 
8 namespace SQGenFit
9 {
10 
11 class GFTrack;
12 
13 class GFMeasurement: public genfit::WireMeasurement
14 {
15 public:
16  GFMeasurement(const SignedHit& rawHit, bool en = true);
17  GFMeasurement(const GFMeasurement& meas);
18  virtual ~GFMeasurement() {}
19 
20  virtual genfit::AbsMeasurement* clone() const override { return new GFMeasurement(*this); }
21 
22  void setTrackPtr(GFTrack* trackPtr);
23 
24  void enableHitInFit(bool en = true) { _enableInFit = en; }
25  SignedHit& getBeforeFitHit() { return _bfHit; }
26  void postFitUpdate();
27 
28  double getZ() const { return _z; }
29  bool isEnabled() const { return _enableInFit; }
30 
31  void print(unsigned int debugLvl = 0) const;
32 
33 private:
34  void printHelper(double w, TVector3& pos, TVector3& mom, TString name = "none") const;
35 
36  SignedHit _bfHit;
37  double _z;
38  bool _enableInFit;
39 
40  double _proj;
41  int _driftSign;
42  GFTrack* _track;
43 
44 };
45 
47 {
48 public:
49  bool operator() (const GFMeasurement* lhs, const GFMeasurement* rhs) const { return lhs->getZ() < rhs->getZ(); }
50 };
51 
52 }
53 
54 #endif
bool operator()(const GFMeasurement *lhs, const GFMeasurement *rhs) const
Definition: GFMeasurement.h:49
void setTrackPtr(GFTrack *trackPtr)
virtual genfit::AbsMeasurement * clone() const override
Definition: GFMeasurement.h:20
void print(unsigned int debugLvl=0) const
SignedHit & getBeforeFitHit()
Definition: GFMeasurement.h:25
GFMeasurement(const SignedHit &rawHit, bool en=true)
void enableHitInFit(bool en=true)
Definition: GFMeasurement.h:24