Class Reference for E1039 Core & Analysis Software
FastTracklet.h
Go to the documentation of this file.
1 /*
2 
3 Supporting structure of fast tracking, include SignedHit and Tracklet
4 
5 Author: Kun Liu, liuk@fnal.gov
6 Created: 06-09-2013
7 
8 */
9 
10 #ifndef _FASTTRACKLET_H
11 #define _FASTTRACKLET_H
12 
13 #include <GlobalConsts.h>
14 
15 #include <list>
16 #include <vector>
17 
18 #include <TVector3.h>
19 
20 #include <geom_svc/GeomSvc.h>
21 #include <phool/PHObject.h>
22 
23 #include "SRawEvent.h"
24 #include "SRecEvent.h"
25 
26 class SignedHit : public PHObject
27 {
28 public:
29  SignedHit();
30  explicit SignedHit(int detectorID);
31  SignedHit(Hit hit_input, int sign_input);
32 
33  //PHObject virtual overloads
34  void identify(std::ostream& os = std::cout) const;
35  void Reset() { hit = Hit(); sign = 0; }
36  int isValid() const { return hit.index > 0; }
37  SignedHit* Clone() const { return (new SignedHit(hit, sign)); }
38 
39  //comparision operators for sorting
40  bool operator<(const SignedHit elem) const { return hit.detectorID < elem.hit.detectorID; }
41  bool operator==(const SignedHit elem) const { return hit.index == elem.hit.index; }
42 
43  //Get the real hit position
44  double pos() { return hit.pos + sign*hit.driftDistance; }
45  double pos(int sign_input) { return hit.pos + sign_input*hit.driftDistance; }
46 
47  //Data members
49  int sign;
50 
51  ClassDef(SignedHit, 1)
52 };
53 
54 class PropSegment : public PHObject
55 {
56 public:
57  PropSegment();
58 
59  //PHObject virtual overloads
60  void identify(std::ostream& os = std::cout) const { print(os); };
61  void Reset() { init(); }
62  int isValid() const;
63  PropSegment* Clone() const { return (new PropSegment(*this)); }
64 
65  //init -- temporary, only used for tests
66  void init();
67 
68  //Quality cut
69  //bool isValid();
70 
71  //Debugging output
72  void print(std::ostream& os = std::cout) const;
73 
74 #ifndef __CINT__
75  //Get expected position at a given Z
76  double getExpPosition(double z) const { return a*z + b; }
77 
78  //Get the closest approach to a given space position/proptube wire
79  double getClosestApproach(double z, double pos);
80 
81  //Get reference pos at first two planes
82  double getPosRef(double default_val = -9999.);
83 
84  //Number of hits
85  int getNHits() const;
86 
87  //Number of planes
88  int getNPlanes() const;
89 
90  //Fit the segment -- naive linear fit
91  void fit(); // external call
92  void fit_2hits();
93  void fit_34hits();
94 
95  //linear chisq fitter
96  void linearFit_simple();
97  void linearFit_iterative();
98 
99  //resolve left/right
100  void resolveLR();
101  void resolveLR(int setting);
102 #endif
103 
104  //track slope the interception
105  double a;
106  double b;
107  double err_a;
108  double err_b;
109 
110  //chisq of the segment
111  double chisq;
112 
113  //Auxilary hodoscope hit list, cannot be possibly more than 4 hodoscope hits
116 
117  //Hit list -- only 4 hits at most
119 
120  ClassDef(PropSegment, 4)
121 };
122 
123 class Tracklet : public PHObject
124 {
125 public:
126  Tracklet();
127 
128  //PHObject virtual overloads
129  void identify(std::ostream& os = std::cout) const { os << "Tracklet @sID=" << stationID << std::endl;}
130  void Reset() { *this = Tracklet(); }
131  int isValid() const;
132  Tracklet* Clone() const { return (new Tracklet(*this)); }
133 
134  //Basic quality cut
135  //bool isValid();
136 
137  //Debuggin output
138  void print(std::ostream& os = std::cout);
139 
140 #ifndef __CINT__
141  //Sort hit list
142  void sortHits() { hits.sort(); }
143 
144  //Update/get number of real hits
145  int getNHits() const { return nXHits + nUHits + nVHits; }
146 
147  //Number of all hits (even excluded)
148  int getNAllHits() { return hits.size(); }
149 
150  //Get the probabilities
151  double getProb() const;
152 
153  //Get the momentum probabilities
154  double getMomProb() const;
155 
156  //Get the chi square
157  double getChisq() const { return chisq; }
158 
159  //Get x and y positions at a given z
160  double getExpPositionX(double z) const;
161  double getExpPosErrorX(double z) const;
162  double getExpPositionY(double z) const;
163  double getExpPosErrorY(double z) const;
164  double getExpPositionW(int detectorID) const;
165  int getExpElementID(int detectorID) const;
166 
167  //Get momentum upstream/downstream
168  TVector3 getMomentumSt1() const;
169  TVector3 getMomentumSt3() const;
170  TVector3 getExpMomentum(double z) const;
171 
172  //Get the i-th signed hit
173  SignedHit getSignedHit(int index);
174 
175  //Kernal function to calculate chi square for minimizer
176  double Eval(const double* par);
177  double Eval4(const double* par);
178  double calcChisq();
179 
180  //Add dummy hits
181  void addDummyHits();
182 
183  //Momentum estimation using back partial
184  double getMomentum() const;
185 
186  //Decide charge by KMag bending direction
187  //int getCharge() const { return x0*KMAGSTR > tx ? 1 : -1; }
188  int getCharge() const;
189 
190  //Get the slope and intersection in station 1
191  void getXZInfoInSt1(double& tx_st1, double& x0_st1) const;
192  void getXZErrorInSt1(double& err_tx_st1, double& err_x0_st1) const;
193 
194  //For sorting tracklet list
195  bool operator<(const Tracklet& elem) const;
196 
197  //For reducing similar tracklets
198  bool similarity(const Tracklet& elem) const;
199 
200  //Merge the hit list from two tracklets
201  Tracklet merge(Tracklet& elem);
202 
203  //For adding two tracklets together to form a back partial track
204  Tracklet operator+(const Tracklet& elem) const;
205 
206  //For adding two tracklets together to form a global track
207  Tracklet operator*(const Tracklet& elem) const;
208 
209  //Convert to a SRecTrack
210  SRecTrack getSRecTrack(bool hyptest = true);
211 #endif
212 
213  //Station ID, ranging from 1 to nStation, nStation-1 means back partial track, nStation means global track
215 
216  //Number of hits
217  mutable int nXHits;
218  mutable int nUHits;
219  mutable int nVHits;
220 
221  //Chi square
222  double chisq;
223 
224  //chisq at vertex
225  double chisq_vtx;
226 
227  //List of signed hits
228  std::list<SignedHit> hits;
229 
230  //Corresponding prop. tube segments
233 
234  //Slope, intersection, momentum and their errors
235  double tx;
236  double ty;
237  double x0;
238  double y0;
239  double invP;
240 
241  double err_tx;
242  double err_ty;
243  double err_x0;
244  double err_y0;
245  double err_invP;
246 
247  //Residuals of all pos
249 
250  ClassDef(Tracklet, 4)
251 };
252 
253 class TrackletVector : public PHObject
254 {
255 public:
256  TrackletVector();
257  virtual ~TrackletVector();
258 
259  void identify(std::ostream& os = std::cout) const;
260  void Reset();
261  int isValid() const { return 1; };
262  TrackletVector* Clone() const { return (new TrackletVector(*this)); }
263 
264  bool empty() const { return trackletVec.empty(); }
265  size_t size() const { return trackletVec.size(); }
266  void clear() { Reset(); }
267 
268  const Tracklet* at(const size_t index) const;
269  Tracklet* at(const size_t index);
270  void push_back(const Tracklet* tracklet);
271  size_t erase(const size_t index);
272 
273  std::vector<Tracklet*>::const_iterator begin() const { return trackletVec.begin(); }
274  std::vector<Tracklet*>::const_iterator end() const { return trackletVec.end(); }
275 
276  std::vector<Tracklet*>::iterator begin() { return trackletVec.begin(); }
277  std::vector<Tracklet*>::iterator end() { return trackletVec.end(); }
278 
279 private:
280  std::vector<Tracklet*> trackletVec;
281 
282  ClassDef(TrackletVector, 1)
283 };
284 
285 
286 #endif
#define nChamberPlanes
Definition: GlobalConsts.h:6
Definition of hit structure.
Definition: SRawEvent.h:35
Int_t index
Definition: SRawEvent.h:77
Float_t pos
Definition: SRawEvent.h:82
Short_t detectorID
Definition: SRawEvent.h:78
Float_t driftDistance
Definition: SRawEvent.h:81
void linearFit_iterative()
SignedHit hits[4]
Definition: FastTracklet.h:118
Hit hodoHits[4]
Definition: FastTracklet.h:115
double getClosestApproach(double z, double pos)
int getNPlanes() const
double chisq
Definition: FastTracklet.h:111
PropSegment * Clone() const
Definition: FastTracklet.h:63
double err_a
Definition: FastTracklet.h:107
void Reset()
Clear Event.
Definition: FastTracklet.h:61
void resolveLR()
void print(std::ostream &os=std::cout) const
int getNHits() const
double getExpPosition(double z) const
Definition: FastTracklet.h:76
void fit_34hits()
int isValid() const
isValid returns non zero if object contains vailid data
void fit_2hits()
double getPosRef(double default_val=-9999.)
void identify(std::ostream &os=std::cout) const
Definition: FastTracklet.h:60
double err_b
Definition: FastTracklet.h:108
void linearFit_simple()
int isValid() const
isValid returns non zero if object contains vailid data
Definition: FastTracklet.h:36
void Reset()
Clear Event.
Definition: FastTracklet.h:35
bool operator<(const SignedHit elem) const
Definition: FastTracklet.h:40
SignedHit * Clone() const
Definition: FastTracklet.h:37
double pos()
Definition: FastTracklet.h:44
bool operator==(const SignedHit elem) const
Definition: FastTracklet.h:41
void identify(std::ostream &os=std::cout) const
double pos(int sign_input)
Definition: FastTracklet.h:45
void identify(std::ostream &os=std::cout) const
const Tracklet * at(const size_t index) const
virtual ~TrackletVector()
std::vector< Tracklet * >::const_iterator end() const
Definition: FastTracklet.h:274
TrackletVector * Clone() const
Definition: FastTracklet.h:262
bool empty() const
Definition: FastTracklet.h:264
std::vector< Tracklet * >::iterator end()
Definition: FastTracklet.h:277
std::vector< Tracklet * >::iterator begin()
Definition: FastTracklet.h:276
size_t erase(const size_t index)
void Reset()
Clear Event.
int isValid() const
isValid returns non zero if object contains vailid data
Definition: FastTracklet.h:261
void push_back(const Tracklet *tracklet)
std::vector< Tracklet * >::const_iterator begin() const
Definition: FastTracklet.h:273
size_t size() const
Definition: FastTracklet.h:265
PropSegment seg_x
Definition: FastTracklet.h:231
double invP
Definition: FastTracklet.h:239
double err_invP
Definition: FastTracklet.h:245
double getExpPositionY(double z) const
std::list< SignedHit > hits
Definition: FastTracklet.h:228
double y0
Definition: FastTracklet.h:238
Tracklet * Clone() const
Definition: FastTracklet.h:132
bool operator<(const Tracklet &elem) const
int stationID
Definition: FastTracklet.h:214
TVector3 getMomentumSt1() const
PropSegment seg_y
Definition: FastTracklet.h:232
int isValid() const
isValid returns non zero if object contains vailid data
double ty
Definition: FastTracklet.h:236
double err_y0
Definition: FastTracklet.h:244
double err_x0
Definition: FastTracklet.h:243
void identify(std::ostream &os=std::cout) const
Definition: FastTracklet.h:129
void Reset()
Clear Event.
Definition: FastTracklet.h:130
double tx
Definition: FastTracklet.h:235
double Eval(const double *par)
double x0
Definition: FastTracklet.h:237
void sortHits()
Definition: FastTracklet.h:142
double getExpPosErrorY(double z) const
double Eval4(const double *par)
void getXZErrorInSt1(double &err_tx_st1, double &err_x0_st1) const
Tracklet operator*(const Tracklet &elem) const
int getNHits() const
Definition: FastTracklet.h:145
TVector3 getMomentumSt3() const
double getExpPosErrorX(double z) const
double chisq_vtx
Definition: FastTracklet.h:225
int getExpElementID(int detectorID) const
double getProb() const
TVector3 getExpMomentum(double z) const
double getMomProb() const
bool similarity(const Tracklet &elem) const
double chisq
Definition: FastTracklet.h:222
double residual[nChamberPlanes]
Definition: FastTracklet.h:248
double getExpPositionX(double z) const
SRecTrack getSRecTrack(bool hyptest=true)
SignedHit getSignedHit(int index)
double getChisq() const
Definition: FastTracklet.h:157
double getExpPositionW(int detectorID) const
double getMomentum() const
double err_tx
Definition: FastTracklet.h:241
Tracklet operator+(const Tracklet &elem) const
int getNAllHits()
Definition: FastTracklet.h:148
double err_ty
Definition: FastTracklet.h:242
void print(std::ostream &os=std::cout)
Tracklet merge(Tracklet &elem)
int getCharge() const
Return the charge (+1 or -1) of this tracklet.
double calcChisq()
void addDummyHits()
void getXZInfoInSt1(double &tx_st1, double &x0_st1) const