StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
FwdHit.h
1 #ifndef FwdHit_h
2 #define FwdHit_h
3 
4 #include "KiTrack/IHit.h"
5 #include "KiTrack/ISectorConnector.h"
6 #include "KiTrack/ISectorSystem.h"
7 #include "KiTrack/KiTrackExceptions.h"
8 
9 #include <memory>
10 #include <set>
11 #include <string.h>
12 #include <vector>
13 
14 #include "StEvent/StEnumerations.h"
15 
16 class StHit;
17 
18 class FwdSystem : public KiTrack::ISectorSystem {
19  public:
20  static const int sNFwdLayers = 7;
21  static const int sNFttLayers = 4;
22  static const int sNFstLayers = 3;
23  FwdSystem(const int ndisks = FwdSystem::sNFwdLayers) : KiTrack::ISectorSystem(), mNDisks(ndisks){};
24  ~FwdSystem(){/* */};
25  virtual unsigned int getLayer(int diskid) const {
26  return diskid;
27  }
28 
29  int mNDisks;
30  std::string getInfoOnSector(int sec) const { return "NOOP"; }
31  static FwdSystem *sInstance; // setup and torn down by StFwdTrackMaker
32 };
33 
34 //_____________________________________________________________________________________________
35 
36 // small class to store Mc Track information
37 class McTrack {
38  public:
39  McTrack() {
40  set( -999, -999, -999, 0, -1 );
41  }
42  McTrack(double pt, double eta = -999, double phi = -999, int q = 0,
43  int start_vertex = -1) {
44  set( pt, eta, phi, q, start_vertex );
45  }
46 
47  void set(double pt, double eta = -999, double phi = -999, int q = 0, int start_vertex = -1){
48  mPt = pt;
49  mEta = eta;
50  mPhi = phi;
51  mQ = q;
52  mStartVertex = start_vertex;
53  }
54 
55  void addFttHit(KiTrack::IHit *hit) { mFttHits.push_back(hit); }
56  void addFstHit(KiTrack::IHit *hit) { mFstHits.push_back(hit); }
57 
58  double mPt, mEta, mPhi;
59  int mTid, mQ, mStartVertex;
60 
61  std::vector<KiTrack::IHit *> mFttHits;
62  std::vector<KiTrack::IHit *> mFstHits;
63 };
64 
65 
66 /*
67  * Note, this class does not follow STAR naming convention.
68  * Instead, keep the conventions of KiTrack
69  */
70 class FwdHit : public KiTrack::IHit {
71  public:
72  // Default ctor
73  FwdHit() : KiTrack::IHit() {
74  _id = 0;
75  _x = 0;
76  _y = 0;
77  _z = 0;
78  _detid = 0;
79  _tid = 0;
80  _vid = 0;
81  _sector = 0;
82  _mcTrack = nullptr;
83  _hit = 0;
84  _covmat.ResizeTo( 3, 3 );
85  };
86  FwdHit(unsigned int id, float x, float y, float z, int vid, int detid, int tid,
87  TMatrixDSym covmat, std::shared_ptr<McTrack> mcTrack )
88  : KiTrack::IHit() {
89  _id = id;
90  _x = x;
91  _y = y;
92  _z = z;
93  _detid = detid;
94  _tid = tid;
95  _vid = vid;
96  _mcTrack = mcTrack;
97  _hit = 0;
98  _covmat.ResizeTo( 3, 3 );
99  _covmat = covmat;
100 
101  // these are the sector ids mapped to layers
102  int map[] = {0, 0, 0, 0, 0, 1, 2, 0, 0, 3, 4, 5, 6}; // ftsref6a
103 
104  if (vid > 0)
105  _sector = map[vid];
106  else {
107  _sector = abs(vid); // set directly if you want
108  // now set vid back so we retain info on the tru origin of the hit
109  _vid = abs(vid) + 9; // we only use this for sTGC only. Needs to be
110  // cleaner in future.
111  }
112  };
113 
114  // Set basic props for e.g. Primary Vertex type hits
115  void setXYZDetId( float x, float y, float z, int detid ){
116  _x = x;
117  _y = y;
118  _z = z;
119  _detid = detid;
120  }
121 
122  bool isFst() const { return _detid == kFstId; }
123  bool isFtt() const { return _detid == kFttId; }
124  bool isPV() const { return _detid == kTpcId; }
125 
126  std::shared_ptr<McTrack> getMcTrack() { return _mcTrack; }
127 
128  const KiTrack::ISectorSystem *getSectorSystem() const {
129  return FwdSystem::sInstance;
130  }
131 
132  std::string Print() const {
133  return "FwdHit: \n" + std::to_string(_id) + " x: " + std::to_string(_x) +
134  " y: " + std::to_string(_y) + " z: " + std::to_string(_z) +
135  " detid: " + std::to_string(_detid) + " tid: " + std::to_string(_tid) +
136  " vid: " + std::to_string(_vid) + " sector: " + std::to_string(_sector) +
137  // output covmat as a 3x3 matrix
138  " covmat: \n" + std::to_string(_covmat(0,0)) + " " + std::to_string(_covmat(0,1)) + " " + std::to_string(_covmat(0,2)) + " \n" +
139  std::to_string(_covmat(1,0)) + " " + std::to_string(_covmat(1,1)) + " " + std::to_string(_covmat(1,2)) + " \n" +
140  std::to_string(_covmat(2,0)) + " " + std::to_string(_covmat(2,1)) + " " + std::to_string(_covmat(2,2));
141  }
142 
143  void setSector( int s ){ _sector = s; }
144  int getTrackId() { return _tid;}
145  int _tid; // aka ID truth
146  int _vid; // volume id
147  int _detid; // detector id
148  unsigned int _id; // just a unique id for each hit in this event.
149  std::shared_ptr<McTrack> _mcTrack;
150  TMatrixDSym _covmat;
151 
152  StHit *_hit;
153 };
154 
155 // Track Seed typdef
156 typedef std::vector<KiTrack::IHit *> Seed_t;
157 
158 class FwdConnector : public KiTrack::ISectorConnector {
159  public:
160  FwdConnector(unsigned int distance)
161  : _distance(distance) {}
162  ~FwdConnector(){};
163 
164  // Return the possible sectors (layers) given current
165  virtual std::set<int> getTargetSectors(int disk) {
166 
167  std::set<int> r;
168 
169  if (disk > 0 && _distance >= 1)
170  r.insert(disk - 1);
171 
172  if (disk > 1 && _distance >= 2)
173  r.insert(disk - 2);
174 
175  if (disk > 2 && _distance >= 3)
176  r.insert(disk - 3);
177 
178  if (disk > 3 && _distance >= 4)
179  r.insert(disk - 4);
180 
181  return r;
182  };
183 
184  private:
185  protected:
186  // const FwdSystem _system; // numbering system
187  unsigned int _distance; // number of layers forward to search
188 }; // FwdConnector
189 
190 struct SeedQual {
191  inline double operator()(Seed_t s) { return double(s.size()) / FwdSystem::sNFttLayers ; } // seeds only use the 4 hits from Ftt
192 };
193 
194 struct SeedCompare {
195  inline bool operator()(Seed_t trackA, Seed_t trackB) {
196  std::map<unsigned int, unsigned int> hit_counts;
197  // we are assuming that the same hit can never be used twice on a single
198  // track!
199 
200  for (auto h : trackA) {
201  hit_counts[static_cast<FwdHit *>(h)->_id]++;
202  }
203 
204  // now look at the other track and see if it has the same hits in it
205  for (auto h : trackB) {
206  hit_counts[static_cast<FwdHit *>(h)->_id]++;
207 
208  // incompatible if they share a single hit
209  if (hit_counts[static_cast<FwdHit *>(h)->_id] >= 2) {
210  return false;
211  }
212  }
213 
214  // no hits are shared, they are compatible
215  return true;
216  }
217 };
218 
219 #endif
Definition: StHit.h:125
Definition: FwdHit.h:70
Definition: FwdHit.h:37