Class Reference for E1039 Core & Analysis Software
KalmanFastTrackletting.cxx
Go to the documentation of this file.
1 #include <iostream>
2 #include <phool/PHTimer.h>
3 #include <phool/recoConsts.h>
4 #include <fun4all/Fun4AllBase.h>
5 #include <phfield/PHField.h>
7 using namespace std;
8 
9 KalmanFastTrackletting::KalmanFastTrackletting(const PHField* field, const TGeoManager* geom, bool flag, const int verb)
10  : KalmanFastTracking(field, geom, flag, verb)
11 {
13  TX_MAX = rc->get_DoubleFlag("TX_MAX");
14  TY_MAX = rc->get_DoubleFlag("TY_MAX");
15  X0_MAX = rc->get_DoubleFlag("X0_MAX");
16  Y0_MAX = rc->get_DoubleFlag("Y0_MAX");
17 }
18 
20 {
21  ;
22 }
23 
25 {
26  int ret = setRawEventPrep(event_input);
27  if (ret != 0) return ret;
28 
29  //Build tracklets in station 2, 3+, 3-
30  _timers["st2"]->restart();
31  buildTrackletsInStation(3, 1); //3 for station-2, 1 for list position 1
32  _timers["st2"]->stop();
33  if(verbosity >= 2) LogInfo("NTracklets in St2: " << trackletsInSt[1].size());
34 
35  _timers["st3"]->restart();
36  buildTrackletsInStation(4, 2); //4 for station-3+
37  buildTrackletsInStation(5, 2); //5 for station-3-
38  _timers["st3"]->stop();
39  if(verbosity >= 2) LogInfo("NTracklets in St3: " << trackletsInSt[2].size());
40 
41  _timers["global_st1"]->restart(); // Not global but be diverted
42  buildTrackletsInStation(1, 0); // 1 for D0
43  _timers["global_st1"]->stop();
44  if(verbosity >= 2) LogInfo("NTracklets in St1: " << trackletsInSt[0].size());
45 
46  //Build back partial tracks in station 2, 3+ and 3-
47  _timers["st23"]->restart();
49  _timers["st23"]->stop();
50  if(verbosity >= 2) LogInfo("NTracklets St2+St3: " << trackletsInSt[3].size());
51 
52  if(verbosity >= 3) {
53  for(int i = 0; i <= 4; i++)
54  {
55  std::cout << "=======================================================================================" << std::endl;
56  LogInfo("Tracklets in station: " << i+1 << " is " << trackletsInSt[i].size());
57  for(std::list<Tracklet>::iterator tracklet = trackletsInSt[i].begin(); tracklet != trackletsInSt[i].end(); ++tracklet)
58  {
59  tracklet->print();
60  }
61  std::cout << "=======================================================================================" << std::endl;
62  }
63  }
64 
65  return TFEXIT_SUCCESS;
66 }
67 
68 void KalmanFastTrackletting::buildTrackletsInStation(int stationID, int listID, double* pos_exp, double* window)
69 {
70  //actuall ID of the tracklet lists
71  int sID = stationID - 1;
72 
73  //Extract the X, U, V hit pairs
74  std::list<SRawEvent::hit_pair> pairs_X, pairs_U, pairs_V;
75  if(pos_exp == nullptr)
76  {
80  }
81  else
82  {
83  //Note that in pos_exp[], index 0 stands for X, index 1 stands for U, index 2 stands for V
84  pairs_X = rawEvent->getPartialHitPairsInSuperDetector(superIDs[sID][0], pos_exp[0], window[0]);
85  pairs_U = rawEvent->getPartialHitPairsInSuperDetector(superIDs[sID][1], pos_exp[1], window[1]);
86  pairs_V = rawEvent->getPartialHitPairsInSuperDetector(superIDs[sID][2], pos_exp[2], window[2]);
87  }
88 
89  if(pairs_X.empty() || pairs_U.empty() || pairs_V.empty()) return;
90 
91  //X-U combination first, then add V pairs
92  for(std::list<SRawEvent::hit_pair>::iterator xiter = pairs_X.begin(); xiter != pairs_X.end(); ++xiter)
93  {
94  bool has_x_2nd = xiter->second >= 0;
95  double x_pos = has_x_2nd ? 0.5*(hitAll[xiter->first].pos + hitAll[xiter->second].pos) : hitAll[xiter->first].pos;
96  double u_min = x_pos*u_costheta[sID] - u_win[sID];
97  double u_max = u_min + 2.*u_win[sID];
98 
99  for(std::list<SRawEvent::hit_pair>::iterator uiter = pairs_U.begin(); uiter != pairs_U.end(); ++uiter)
100  {
101  bool has_u_2nd = uiter->second >= 0;
102  double u_pos = has_u_2nd ? 0.5*(hitAll[uiter->first].pos + hitAll[uiter->second].pos) : hitAll[uiter->first].pos;
103  if(u_pos < u_min || u_pos > u_max) continue;
104 
105  //V projections from X and U plane
106  double z_x = has_x_2nd ? z_plane_x[sID] : z_plane[hitAll[xiter->first].detectorID];
107  double z_u = has_u_2nd ? z_plane_u[sID] : z_plane[hitAll[uiter->first].detectorID];
108  double z_v = z_plane_v[sID];
109  double v_win1 = spacing_plane[hitAll[uiter->first].detectorID]*2.*u_costheta[sID];
110  double v_win2 = fabs((z_u + z_v - 2.*z_x)*u_costheta[sID]*TX_MAX);
111  double v_win3 = fabs((z_v - z_u)*u_sintheta[sID]*TY_MAX);
112  double v_win = v_win1 + v_win2 + v_win3 + 2.*spacing_plane[hitAll[uiter->first].detectorID];
113  double v_min = 2*x_pos*u_costheta[sID] - u_pos - v_win;
114  double v_max = v_min + 2.*v_win;
115 
116  for(std::list<SRawEvent::hit_pair>::iterator viter = pairs_V.begin(); viter != pairs_V.end(); ++viter)
117  {
118  bool has_v_2nd = viter->second >= 0;
119  double v_pos = has_v_2nd ? 0.5*(hitAll[viter->first].pos + hitAll[viter->second].pos) : hitAll[viter->first].pos;
120  if(v_pos < v_min || v_pos > v_max) continue;
121 
122  //Now add the tracklet, using all L-R combinations.
123  for (int LR_X1 = -1 ; LR_X1 <= +1; LR_X1 += 2) {
124  for (int LR_X2 = (has_x_2nd ? -1 : +1); LR_X2 <= +1; LR_X2 += 2) {
125  for (int LR_U1 = -1 ; LR_U1 <= +1; LR_U1 += 2) {
126  for (int LR_U2 = (has_u_2nd ? -1 : +1); LR_U2 <= +1; LR_U2 += 2) {
127  for (int LR_V1 = -1 ; LR_V1 <= +1; LR_V1 += 2) {
128  for (int LR_V2 = (has_v_2nd ? -1 : +1); LR_V2 <= +1; LR_V2 += 2) {
129  Tracklet tracklet_new;
130  tracklet_new.stationID = stationID;
131 
132  tracklet_new.hits.push_back(SignedHit(hitAll[xiter->first], LR_X1));
133  tracklet_new.nXHits++;
134 
135  if(has_x_2nd) {
136  tracklet_new.hits.push_back(SignedHit(hitAll[xiter->second], LR_X2));
137  tracklet_new.nXHits++;
138  }
139 
140  tracklet_new.hits.push_back(SignedHit(hitAll[uiter->first], LR_U1));
141  tracklet_new.nUHits++;
142 
143  if(has_u_2nd) {
144  tracklet_new.hits.push_back(SignedHit(hitAll[uiter->second], LR_U2));
145  tracklet_new.nUHits++;
146  }
147 
148  tracklet_new.hits.push_back(SignedHit(hitAll[viter->first], LR_V1));
149  tracklet_new.nVHits++;
150 
151  if(has_v_2nd) {
152  tracklet_new.hits.push_back(SignedHit(hitAll[viter->second], LR_V2));
153  tracklet_new.nVHits++;
154  }
155 
156  tracklet_new.sortHits();
157  if(tracklet_new.isValid() == 0) {
158  fitTracklet(tracklet_new);
159  trackletsInSt[listID].push_back(tracklet_new);
160  }
161  }}}}}}
162  }
163  }
164  }
165 
166  for(std::list<Tracklet>::iterator iter = trackletsInSt[listID].begin(); iter != trackletsInSt[listID].end(); ++iter)
167  {
168  iter->addDummyHits();
169  }
170 }
#define LogInfo(message)
Definition: DbSvc.cc:15
#define TFEXIT_SUCCESS
Definition: GlobalConsts.h:17
high precision timer
std::list< Tracklet > trackletsInSt[5]
double u_sintheta[nChamberPlanes/6]
double u_costheta[nChamberPlanes/6]
std::vector< int > superIDs[nChamberPlanes/6+2]
For following part, id = 0, 1, 2, 3, 4, 5, 6 stand for station 0, 1, 2, 3+, 3-, and prop tubes X-Z an...
double z_plane[nChamberPlanes+1]
int setRawEventPrep(SRawEvent *event_input)
int fitTracklet(Tracklet &tracklet)
virtual void buildBackPartialTracks()
double spacing_plane[nChamberPlanes+1]
std::vector< Hit > hitAll
double z_plane_x[nChamberPlanes/6]
double z_plane_u[nChamberPlanes/6]
std::map< std::string, PHTimer * > _timers
double u_win[nChamberPlanes/6]
double z_plane_v[nChamberPlanes/6]
virtual void buildTrackletsInStation(int stationID, int listID, double *pos_exp=nullptr, double *window=nullptr)
Tracklet finding stuff.
virtual int setRawEvent(SRawEvent *event_input)
KalmanFastTrackletting(const PHField *field, const TGeoManager *geom, bool flag=true, const int verb=0)
transient DST object for field storage and access
Definition: PHField.h:14
virtual double get_DoubleFlag(const std::string &name) const
Definition: PHFlag.cc:49
std::list< SRawEvent::hit_pair > getPartialHitPairsInSuperDetector(Short_t detectorID)
Definition: SRawEvent.cxx:254
std::list< SignedHit > hits
Definition: FastTracklet.h:228
int stationID
Definition: FastTracklet.h:214
int isValid() const
isValid returns non zero if object contains vailid data
void sortHits()
Definition: FastTracklet.h:142
static recoConsts * instance()
Definition: recoConsts.cc:7