6 EventReducer::EventReducer(TString options) : afterhit(false), hodomask(false), outoftime(false), decluster(false), mergehodo(false), triggermask(false), sagitta(false), hough(false), realization(false), difnim(false)
10 if(options.Contains(
"a")) afterhit =
true;
11 if(options.Contains(
"h")) hodomask =
true;
12 if(options.Contains(
"o")) outoftime =
true;
13 if(options.Contains(
"c")) decluster =
true;
14 if(options.Contains(
"m")) mergehodo =
true;
15 if(options.Contains(
"t")) triggermask =
true;
16 if(options.Contains(
"s")) sagitta =
true;
17 if(options.Contains(
"g")) hough =
true;
18 if(options.Contains(
"r")) realization =
true;
19 if(options.Contains(
"n")) difnim =
true;
21 if(options.Contains(
"e")) {
22 std::cout <<
"EventReducer: !!ERROR!! Option 'e' is no longer available. Use 'CalibDriftDist'. Abort." << std::endl;
28 SAGITTA_TARGET_CENTER = rc->
get_DoubleFlag(
"SAGITTA_TARGET_CENTER");
44 if(afterhit) std::cout <<
"EventReducer: after-pulse removal enabled. " << std::endl;
45 if(hodomask) std::cout <<
"EventReducer: hodoscope masking enabled. " << std::endl;
46 if(outoftime) std::cout <<
"EventReducer: out-of-time hits removal enabled. " << std::endl;
47 if(decluster) std::cout <<
"EventReducer: hit cluster removal enabled. " << std::endl;
48 if(mergehodo) std::cout <<
"EventReducer: v1495 hits will be merged with TW-TDC hits. " << std::endl;
49 if(triggermask) std::cout <<
"EventReducer: trigger road masking enabled. " << std::endl;
50 if(sagitta) std::cout <<
"EventReducer: sagitta reducer enabled. " << std::endl;
51 if(hough) std::cout <<
"EventReducer: hough transform reducer enabled. " << std::endl;
52 if(realization) std::cout <<
"EventReducer: realization enabled. " << std::endl;
53 if(difnim) std::cout <<
"EventReducer: trigger masking will be disabled in NIM events. " << std::endl;
54 if(fabs(timeOffset) > 0.01) std::cout <<
"EventReducer: " << timeOffset <<
" ns will be added to tdcTime. " << std::endl;
84 bool triggermask_local = triggermask;
87 triggermask_local =
false;
93 for(std::vector<Hit>::iterator iter = rawEvent->fAllHits.begin(); iter != rawEvent->fAllHits.end(); ++iter)
95 if(outoftime && (!iter->isInTime()))
continue;
99 if(realization && rndm.Rndm() > chamEff)
continue;
106 if(triggermask_local && p_geomSvc->
getPlaneType(iter->detectorID) == 1)
continue;
109 if(realization && iter->detectorID <=
nChamberPlanes) iter->driftDistance += rndm.Gaus(0., chamResol);
113 hodohitlist.push_back(*iter);
117 hitlist.push_back(*iter);
123 for(std::vector<Hit>::iterator iter = rawEvent->fTriggerHits.begin(); iter != rawEvent->fTriggerHits.end(); ++iter)
125 if(triggermask_local && p_geomSvc->
getPlaneType(iter->detectorID) == 1)
continue;
126 hodohitlist.push_back(*iter);
131 if(triggermask_local) p_triggerAna->
trimEvent(rawEvent, hodohitlist, mergehodo || USE_V1495_HIT, mergehodo || USE_TWTDC_HIT);
139 hitlist.merge(hodohitlist);
140 if(afterhit) hitlist.unique();
149 rawEvent->fAllHits.clear();
150 rawEvent->fAllHits.assign(hitlist.begin(), hitlist.end());
162 int detectorID_st1_max = 12;
163 int detectorID_st2_max = 18;
166 for(std::list<Hit>::iterator iter = hitlist.begin(); iter != hitlist.end(); ++iter)
169 if(iter->detectorID <= detectorID_st1_max)
173 else if(iter->detectorID <= detectorID_st2_max)
182 int idx_D1 = nHits_D1;
183 int idx_D2 = nHits_D1 + nHits_D2;
184 int idx_D3 = nHits_D1 + nHits_D2 + nHits_D3;
187 std::vector<Hit> hitTemp;
188 hitTemp.assign(hitlist.begin(), hitlist.end());
190 std::vector<int> flag(hitTemp.size(), -1);
191 for(
int i = idx_D2; i < idx_D3; ++i)
194 double slope_target = hitTemp[i].pos/(z3 - Z_TARGET);
195 double slope_dump = hitTemp[i].pos/(z3 - Z_DUMP);
196 for(
int j = idx_D1; j < idx_D2; ++j)
201 if(fabs((hitTemp[i].pos - hitTemp[j].pos)/(z2 - z3)) > TX_MAX)
continue;
202 double s2_target = hitTemp[j].pos - slope_target*(z2 - Z_TARGET);
203 double s2_dump = hitTemp[j].pos - slope_dump*(z2 - Z_DUMP);
205 for(
int k = 0; k < idx_D1; ++k)
208 if(flag[i] > 0 && flag[j] > 0 && flag[k] > 0)
continue;
211 double pos_exp_target = SAGITTA_TARGET_CENTER*s2_target + slope_target*(z1 - Z_TARGET);
212 double pos_exp_dump = SAGITTA_DUMP_CENTER*s2_dump + slope_dump*(z1 - Z_DUMP);
213 double win_target = fabs(s2_target*SAGITTA_TARGET_WIDTH);
214 double win_dump = fabs(s2_dump*SAGITTA_DUMP_WIDTH);
216 double p_min = std::min(pos_exp_target - win_target, pos_exp_dump - win_dump);
217 double p_max = std::max(pos_exp_target + win_target, pos_exp_dump + win_dump);
219 if(hitTemp[k].pos > p_min && hitTemp[k].pos < p_max)
230 for(std::list<Hit>::iterator iter = hitlist.begin(); iter != hitlist.end(); )
234 iter = hitlist.erase(iter);
242 if(idx >= idx_D3)
break;
248 std::vector<std::list<Hit>::iterator> cluster;
250 for(std::list<Hit>::iterator hit = hitlist.begin(); hit != hitlist.end(); ++hit)
255 if(cluster.size() == 0)
257 cluster.push_back(hit);
261 if(hit->detectorID != cluster.back()->detectorID)
264 cluster.push_back(hit);
266 else if(hit->elementID - cluster.back()->elementID > 1)
269 cluster.push_back(hit);
273 cluster.push_back(hit);
281 unsigned int clusterSize = cluster.size();
286 double w_max = 0.9*0.5*(cluster.back()->pos - cluster.front()->pos);
287 double w_min = w_max/9.*4.;
289 if((cluster.front()->driftDistance > w_max && cluster.back()->driftDistance > w_min) || (cluster.front()->driftDistance > w_min && cluster.back()->driftDistance > w_max))
291 cluster.front()->driftDistance > cluster.back()->driftDistance ? hitlist.erase(cluster.front()) : hitlist.erase(cluster.back());
293 else if(fabs(cluster.front()->tdcTime - cluster.back()->tdcTime) < 8. && cluster.front()->detectorID >= 19 && cluster.front()->detectorID <= 24)
295 hitlist.erase(cluster.front());
296 hitlist.erase(cluster.back());
304 for(
unsigned int i = 1; i < clusterSize; ++i)
306 dt_mean += fabs(cluster[i]->tdcTime - cluster[i-1]->tdcTime);
308 dt_mean = dt_mean/(clusterSize - 1);
313 for(
unsigned int i = 0; i < clusterSize; ++i)
315 hitlist.erase(cluster[i]);
332 for(
unsigned int i = 1; i < clusterSize - 1; ++i)
334 hitlist.erase(cluster[i]);
345 h2celementID_lo.clear();
346 h2celementID_hi.clear();
348 TString hodoNames[8] = {
"H1B",
"H1T",
"H2B",
"H2T",
"H3B",
"H3T",
"H4B",
"H4T"};
350 for(
int i = 0; i < 8; ++i) hodoIDs[i] = p_geomSvc->
getDetectorID(hodoNames[i].Data());
352 int chamIDs[8][12] = { {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12},
353 {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12},
354 {13, 14, 15, 16, 17, 18, 0, 0, 0, 0, 0, 0},
355 {13, 14, 15, 16, 17, 18, 0, 0, 0, 0, 0, 0},
356 {0, 0, 0, 0, 0, 0, 25, 26, 27, 28, 29, 30},
357 {19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0},
358 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
359 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}};
361 for(
int i = 0; i < 8; ++i)
364 for(
int j = 1; j <= nPaddles; ++j)
367 int uniqueID = hodoIDs[i]*1000 + j;
370 double z0, x0_min, x0_max, y0_min, y0_max;
372 p_geomSvc->
get2DBoxSize(hodoIDs[i], j, x0_min, x0_max, y0_min, y0_max);
374 for(
int k = 0; k < 12; ++k)
376 if(chamIDs[i][k] < 1)
continue;
380 double x_min = x0_min - fabs(TX_MAX*(z - z0));
381 double x_max = x0_max + fabs(TX_MAX*(z - z0));
382 double y_min = y0_min - fabs(TY_MAX*(z - z0));
383 double y_max = y0_max + fabs(TY_MAX*(z - z0));
386 int elementID_hi = 0;
396 double x1, y1, x2, y2;
399 if(!
lineCrossing(x_min, y_min, x_min, y_max, x1, y1, x2, y2) &&
400 !
lineCrossing(x_max, y_min, x_max, y_max, x1, y1, x2, y2))
continue;
402 if(m < elementID_lo) elementID_lo = m;
403 if(m > elementID_hi) elementID_hi = m;
408 if(elementID_lo < 1) elementID_lo = 1;
412 h2celementID_lo[uniqueID].push_back(chamIDs[i][k]*1000 + elementID_lo);
413 h2celementID_hi[uniqueID].push_back(chamIDs[i][k]*1000 + elementID_hi);
419 c2helementIDs.clear();
420 for(LUT::iterator iter = h2celementID_lo.begin(); iter != h2celementID_lo.end(); ++iter)
422 int hodoUID = iter->first;
423 for(
unsigned int i = 0; i < h2celementID_lo[hodoUID].size(); ++i)
425 int chamUID_lo = iter->second[i];
426 int chamUID_hi = h2celementID_hi[hodoUID][i];
427 for(
int j = chamUID_lo; j <= chamUID_hi; ++j)
429 c2helementIDs[j].push_back(hodoUID);
437 for(std::list<Hit>::iterator iter = chamberhits.begin(); iter != chamberhits.end(); )
445 int uniqueID = iter->uniqueID();
448 for(std::vector<int>::iterator jter = c2helementIDs[uniqueID].begin(); jter != c2helementIDs[uniqueID].end(); ++jter)
450 if(std::find(hodohits.begin(), hodohits.end(),
Hit(*jter)) != hodohits.end())
463 iter = chamberhits.erase(iter);
469 double x3,
double y3,
double x4,
double y4)
471 double tc = (x1 - x2)*(y3 - y1) + (y1 - y2)*(x1 - x3);
472 double td = (x1 - x2)*(y4 - y1) + (y1 - y2)*(x1 - x4);
EventReducer(TString options)
bool lineCrossing(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4)
void processCluster(std::vector< std::list< Hit >::iterator > &cluster)
void hodoscopeMask(std::list< Hit > &chamberhits, std::list< Hit > &hodohits)
int reduceEvent(SRawEvent *rawEvent)
int getDetectorID(const std::string &detectorName) const
Get the plane position.
double getPlanePosition(int detectorID) const
void getWireEndPoints(int detectorID, int elementID, double &x_min, double &x_max, double &y_min, double &y_max)
static GeomSvc * instance()
singlton instance
int getPlaneType(int detectorID) const
int getPlaneNElements(int detectorID) const
int getExpElementID(int detectorID, double pos_exp)
void get2DBoxSize(int detectorID, int elementID, double &x_min, double &x_max, double &y_min, double &y_max)
Definition of hit structure.
virtual double get_DoubleFlag(const std::string &name) const
virtual bool get_BoolFlag(const std::string &name) const
void reIndex(bool doSort=false)
Reset the number hits on each plane.
Int_t getNChamberHitsAll()
bool init(std::string fileName, double cut_td=0., double cut_gun=1E8)
void trimEvent(SRawEvent *rawEvent, std::list< Hit > &hitlist, bool USE_TRIGGER_HIT, bool USE_HIT)
static recoConsts * instance()