Class Reference for E1039 Core & Analysis Software
SRawEvent.cxx
Go to the documentation of this file.
1 /*
2 SRawEvent.cxx
3 
4 Implimention of the class SRawEvent
5 
6 Author: Kun Liu, liuk@fnal.gov
7 Created: 10-24-2011
8 */
9 
10 #include <iostream>
11 #include <cmath>
12 
13 #include <TRandom.h>
14 #include <TMath.h>
15 #include <TString.h>
16 #include <TROOT.h>
17 #include <TRandom.h>
18 
19 #include "SRawEvent.h"
20 
23 
24 Hit::Hit() : index(-1), detectorID(-1), flag(0)
25 {
26 }
27 
28 Hit::Hit(int uniqueID)
29 {
32 }
33 
34 Hit::Hit(int dID, int eID) : detectorID(dID), elementID(eID)
35 {
36 }
37 
38 bool Hit::operator<(const Hit& elem) const
39 {
40  if(detectorID < elem.detectorID)
41  {
42  return true;
43  }
44  else if(detectorID > elem.detectorID)
45  {
46  return false;
47  }
48 
49  if(elementID < elem.elementID)
50  {
51  return true;
52  }
53  else if(elementID > elem.elementID)
54  {
55  return false;
56  }
57 
58  if(tdcTime > elem.tdcTime)
59  {
60  return true;
61  }
62  else
63  {
64  return false;
65  }
66 }
67 
68 bool Hit::operator==(const Hit& elem) const
69 {
70  if(detectorID == elem.detectorID && elementID == elem.elementID)
71  {
72  return true;
73  }
74 
75  if(detectorID == elem.detectorID && fabs(pos - elem.pos) < 1E-3)
76  {
77  return true;
78  }
79 
80  return false;
81 }
82 
83 SRawEvent::SRawEvent() : fRunID(-1), fEventID(-1), fSpillID(-1), fTriggerBits(0), fTriggerEmu(-1)
84 {
85  fAllHits.clear();
86  fTriggerHits.clear();
87  for(Int_t i = 0; i < nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes+1; i++)
88  {
89  fNHits[i] = 0;
90  }
91 }
92 
94 {
95 }
96 
98 {
99  fRunID = c->getRunID();
100  fEventID = c->getEventID();
101  fSpillID = c->getSpillID();
102 
103  fTriggerBits = c->getTriggerBits();
104 
105  fTargetPos = c->getTargetPos();
106 
107  fTurnID = c->getTurnID();
108  fRFID = c->getRFID();
109  for(int i=0; i<33; ++i) fIntensity[i] = c->getIntensity(i);
110 
112  for(int i=0; i<4; ++i) fNRoads[i] = c->getNRoads()[i];
113 
114 
115  for(Short_t i = 0; i < nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes+1; i++) {
116  fNHits[i] = c->getNHitsInDetector(i);
117  }
118  fAllHits = c->getAllHits();
119  fTriggerHits = c->getTriggerHits();
120 
121  return;
122 }
123 
124 void SRawEvent::setEventInfo(Int_t runID, Int_t spillID, Int_t eventID)
125 {
126  fRunID = runID;
127  fEventID = eventID;
128  fSpillID = spillID;
129 }
130 
132 {
134  fAllHits.push_back(h);
135 
136  fNHits[0]++;
137  fNHits[h.detectorID]++;
138 }
139 
140 Int_t SRawEvent::findHit(Short_t detectorID, Short_t elementID)
141 {
142  if(detectorID < 1 || detectorID > nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes) return -1;
143  if(elementID < 0) return -1;
144 
145  /*
146  This method produces problems in case of duplicate channels and thus people need to be cautious;
147  It's okay here for two reasons:
148  1. inTime is required when searching for trigger roads;
149  2. hodoscope hit doesn't need tdcTime information as long as it's in-time;
150 
151  Please also note that this is valid only when the hit list is sorted.
152  */
153 
154  Int_t idx_start = 0;
155  for(int i = 1; i < detectorID; ++i) idx_start += fNHits[i];
156  Int_t idx_end = idx_start + fNHits[detectorID];
157  while(idx_start <= idx_end)
158  {
159  Int_t idx_mid = Int_t((idx_start + idx_end)/2);
160  if(fAllHits[idx_mid].elementID == elementID)
161  {
162  return idx_mid;
163  }
164  else if(fAllHits[idx_mid].elementID < elementID)
165  {
166  idx_start = idx_mid + 1;
167  }
168  else
169  {
170  idx_end = idx_mid - 1;
171  }
172  }
173 
174  return -1;
175 }
176 
177 Hit SRawEvent::getHit(Short_t detectorID, Short_t elementID)
178 {
179  Int_t hitID = findHit(detectorID, elementID);
180  if(hitID >= 0) return getHit(hitID);
181 
182  Hit dummy;
183  return dummy;
184 }
185 
186 std::list<Int_t> SRawEvent::getHitsIndexInDetector(Short_t detectorID)
187 {
188  std::list<Int_t> hit_list;
189  hit_list.clear();
190 
191  for(Int_t i = 0; i < fNHits[0]; i++)
192  {
193  if(fAllHits[i].detectorID != detectorID) continue;
194 
195  hit_list.push_back(i);
196  }
197 
198  return hit_list;
199 }
200 
201 
202 std::list<Int_t> SRawEvent::getHitsIndexInDetector(Short_t detectorID, Double_t x_exp, Double_t win)
203 {
204  std::list<Int_t> hit_list;
205  hit_list.clear();
206 
207  for(Int_t i = 0; i < fNHits[0]; i++)
208  {
209  if(fAllHits[i].detectorID != detectorID) continue;
210  if(fabs(fAllHits[i].pos - x_exp) > win) continue;
211 
212  hit_list.push_back(i);
213  }
214 
215  return hit_list;
216 }
217 
218 std::list<Int_t> SRawEvent::getHitsIndexInSuperDetector(Short_t detectorID)
219 {
220  std::list<Int_t> hit_list;
221  hit_list.clear();
222 
223  for(Int_t i = 0; i < fNHits[0]; i++)
224  {
225  if((fAllHits[i].detectorID != 2*detectorID) && (fAllHits[i].detectorID != 2*detectorID-1)) continue;
226 
227  hit_list.push_back(i);
228  }
229 
230  return hit_list;
231 }
232 
233 std::list<Int_t> SRawEvent::getHitsIndexInDetectors(std::vector<Int_t>& detectorIDs)
234 {
235  std::list<Int_t> hit_list;
236  hit_list.clear();
237 
238  UInt_t nDetectors = detectorIDs.size();
239  for(Int_t i = 0; i < fNHits[0]; i++)
240  {
241  for(UInt_t j = 0; j < nDetectors; j++)
242  {
243  if(fAllHits[i].detectorID == detectorIDs[j])
244  {
245  hit_list.push_back(i);
246  break;
247  }
248  }
249  }
250 
251  return hit_list;
252 }
253 
254 std::list<SRawEvent::hit_pair> SRawEvent::getPartialHitPairsInSuperDetector(Short_t detectorID)
255 {
256  std::list<SRawEvent::hit_pair> _hitpairs;
257  std::list<int> _hitlist1 = getHitsIndexInDetector(2*detectorID);
258  std::list<int> _hitlist2 = getHitsIndexInDetector(2*detectorID - 1);
259 
260  std::vector<int> _hitflag1(_hitlist1.size(), -1);
261  std::vector<int> _hitflag2(_hitlist2.size(), -1);
262 
263  //Temp solutions here, some number that is definitely larger than 0.5*spacing
264  double spacing[(nChamberPlanes+nHodoPlanes+nPropPlanes)/2+1] =
265  {0., 0.40, 0.40, 0.40, 0.40, 0.40, 0.40, 1.3, 1.3, 1.3, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, //DCs
266  4.0, 4.0, 7.0, 7.0, 8.0, 12.0, 12.0, 10.0, //hodos
267  3.0, 3.0, 3.0, 3.0};
268 
269  int index1 = -1;
270  int index2 = -1;
271  for(std::list<int>::iterator iter = _hitlist1.begin(); iter != _hitlist1.end(); ++iter)
272  {
273  index1++;
274  index2 = -1;
275  for(std::list<int>::iterator jter = _hitlist2.begin(); jter != _hitlist2.end(); ++jter)
276  {
277  index2++;
278  if(fabs(fAllHits[*iter].pos - fAllHits[*jter].pos) > spacing[detectorID]) continue;
279  _hitpairs.push_back(std::make_pair(*iter, *jter));
280 
281  _hitflag1[index1] = 1;
282  _hitflag2[index2] = 1;
283  }
284  }
285 
286  index1 = 0;
287  for(std::list<int>::iterator iter = _hitlist1.begin(); iter != _hitlist1.end(); ++iter)
288  {
289  if(_hitflag1[index1] < 0) _hitpairs.push_back(std::make_pair(*iter, -1));
290  ++index1;
291  }
292 
293  index2 = 0;
294  for(std::list<int>::iterator iter = _hitlist2.begin(); iter != _hitlist2.end(); ++iter)
295  {
296  if(_hitflag2[index2] < 0) _hitpairs.push_back(std::make_pair(*iter, -1));
297  ++index2;
298  }
299 
300  return _hitpairs;
301 }
302 
303 std::list<SRawEvent::hit_pair> SRawEvent::getPartialHitPairsInSuperDetector(Short_t detectorID, Double_t x_exp, Double_t win)
304 {
305  std::list<SRawEvent::hit_pair> _hitpairs;
306  std::list<int> _hitlist1 = getHitsIndexInDetector(2*detectorID, x_exp, win);
307  std::list<int> _hitlist2 = getHitsIndexInDetector(2*detectorID - 1, x_exp, win+3);
308 
309  std::vector<int> _hitflag1(_hitlist1.size(), -1);
310  std::vector<int> _hitflag2(_hitlist2.size(), -1);
311 
312  //Temp solutions here, some number that is definitely larger than 0.5*spacing
313  double spacing[(nChamberPlanes+nHodoPlanes+nPropPlanes)/2+1] =
314  {0., 0.40, 0.40, 0.40, 0.40, 0.40, 0.40, 1.3, 1.3, 1.3, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, //DCs
315  4.0, 4.0, 7.0, 7.0, 8.0, 12.0, 12.0, 10.0, //hodos
316  3.0, 3.0, 3.0, 3.0}; //prop tubes
317 
318  int index1 = -1;
319  int index2 = -1;
320  for(std::list<int>::iterator iter = _hitlist1.begin(); iter != _hitlist1.end(); ++iter)
321  {
322  index1++;
323  index2 = -1;
324  for(std::list<int>::iterator jter = _hitlist2.begin(); jter != _hitlist2.end(); ++jter)
325  {
326  index2++;
327  if(fabs(fAllHits[*iter].pos - fAllHits[*jter].pos) > spacing[detectorID]) continue;
328  _hitpairs.push_back(std::make_pair(*iter, *jter));
329 
330  _hitflag1[index1] = 1;
331  _hitflag2[index2] = 1;
332  }
333  }
334 
335  index1 = 0;
336  for(std::list<int>::iterator iter = _hitlist1.begin(); iter != _hitlist1.end(); ++iter)
337  {
338  if(_hitflag1[index1] < 0) _hitpairs.push_back(std::make_pair(*iter, -1));
339  ++index1;
340  }
341 
342  index2 = 0;
343  for(std::list<int>::iterator iter = _hitlist2.begin(); iter != _hitlist2.end(); ++iter)
344  {
345  if(_hitflag2[index2] < 0) _hitpairs.push_back(std::make_pair(*iter, -1));
346  ++index2;
347  }
348 
349  return _hitpairs;
350 }
351 
352 std::list<Int_t> SRawEvent::getAdjacentHitsIndex(Hit& _hit)
353 {
354  std::list<Int_t> hit_list;
355  hit_list.clear();
356 
357  Short_t detectorID = _hit.detectorID;
358  Short_t detectorID_adj;
359  if((detectorID/2)*2 == detectorID)
360  {
361  detectorID_adj = detectorID - 1;
362  }
363  else
364  {
365  detectorID_adj = detectorID + 1;
366  }
367 
368  for(Int_t i = 0; i < fNHits[0]; i++)
369  {
370  if(fAllHits[i].detectorID == detectorID_adj && abs(fAllHits[i].elementID - _hit.elementID) <= 1)
371  {
372  hit_list.push_back(i);
373  }
374  }
375 
376  return hit_list;
377 }
378 
379 
380 
382 {
383  Int_t nHits = 0;
384  for(Int_t i = 1; i <= nChamberPlanes; i++)
385  {
386  nHits += fNHits[i];
387  }
388 
389  return nHits;
390 }
391 
393 {
394  Int_t nHits = 0;
395  for(Int_t i = nChamberPlanes+1; i <= nChamberPlanes+nHodoPlanes; i++)
396  {
397  nHits += fNHits[i];
398  }
399 
400  return nHits;
401 }
402 
404 {
405  Int_t nHits = 0;
407  {
408  nHits += fNHits[i];
409  }
410 
411  return nHits;
412 }
413 
414 Int_t SRawEvent::getNHitsInDetectors(std::vector<Int_t>& detectorIDs)
415 {
416  Int_t nHits = 0;
417  UInt_t nDetectors = detectorIDs.size();
418  for(UInt_t i = 0; i < nDetectors; i++)
419  {
420  for(Int_t j = 0; j <= nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes; j++)
421  {
422  if(detectorIDs[i] == j)
423  {
424  nHits += fNHits[j];
425  break;
426  }
427  }
428  }
429 
430  return nHits;
431 }
432 
434 {
435  Int_t nHits = 0;
436  for(Int_t i = 1; i <= 6; i++)
437  {
438  nHits += fNHits[i];
439  }
440 
441  return nHits;
442 }
443 
445 {
446  Int_t nHits = 0;
447  for(Int_t i = 7; i <= 12; i++)
448  {
449  nHits += fNHits[i];
450  }
451 
452  return nHits;
453 }
454 
456 {
457  Int_t nHits = 0;
458  for(Int_t i = 13; i <= 18; i++)
459  {
460  nHits += fNHits[i];
461  }
462 
463  return nHits;
464 }
465 
467 {
468  return getNHitsInD3p() + getNHitsInD3m();
469 }
470 
472 {
473  Int_t nHits = 0;
474  for(Int_t i = 19; i <= 24; i++)
475  {
476  nHits += fNHits[i];
477  }
478 
479  return nHits;
480 }
481 
483 {
484  Int_t nHits = 0;
485  for(Int_t i = 25; i <= 30; i++)
486  {
487  nHits += fNHits[i];
488  }
489 
490  return nHits;
491 }
492 
494 {
495  Int_t nHits = 0;
496  for(Int_t i = nChamberPlanes+1; i <= nChamberPlanes+4; i++)
497  {
498  nHits += fNHits[i];
499  }
500 
501  return nHits;
502 }
503 
505 {
506  Int_t nHits = 0;
507  for(Int_t i = nChamberPlanes+5; i <= nChamberPlanes+8; i++)
508  {
509  nHits += fNHits[i];
510  }
511 
512  return nHits;
513 }
514 
516 {
517  Int_t nHits = 0;
518  for(Int_t i = nChamberPlanes+9; i <= nChamberPlanes+10; i++)
519  {
520  nHits += fNHits[i];
521  }
522 
523  return nHits;
524 }
525 
527 {
528  Int_t nHits = 0;
529  for(Int_t i = nChamberPlanes+11; i <= nChamberPlanes+nHodoPlanes; i++)
530  {
531  nHits += fNHits[i];
532  }
533 
534  return nHits;
535 }
536 
538 {
539  Int_t nHits = 0;
540  for(Int_t i = nChamberPlanes+nHodoPlanes+1; i <= nChamberPlanes+nHodoPlanes+4; i++)
541  {
542  nHits += fNHits[i];
543  }
544 
545  return nHits;
546 }
547 
549 {
550  Int_t nHits = 0;
552  {
553  nHits += fNHits[i];
554  }
555 
556  return nHits;
557 }
558 
559 void SRawEvent::reIndex(bool doSort)
560 {
561  if(doSort) std::sort(fAllHits.begin(), fAllHits.end());
562 
564  for(Int_t i = 0; i < nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes+1; i++) fNHits[i] = 0;
565  for(UInt_t i = 0; i < fAllHits.size(); i++) ++fNHits[fAllHits[i].detectorID];
566 
567  fNHits[0] = fAllHits.size();
568 }
569 
571 {
572  fAllHits.insert(fAllHits.end(), event.fAllHits.begin(), event.fAllHits.end());
573  fTriggerHits.insert(fTriggerHits.end(), event.fTriggerHits.begin(), event.fTriggerHits.end());
574 
575  fTurnID = event.fTurnID;
576  fRFID = event.fRFID;
577  for(int i = 0; i < 33; ++i) fIntensity[i] = event.fIntensity[i];
578 
579  fTargetPos = event.fTargetPos;
580  reIndex();
581 }
582 
584 {
585  //Set runID, eventID, spillID
586  setEventInfo(event->getRunID(), event->getSpillID(), event->getEventID());
587 
588  //Set trigger bits
589  setTriggerBits(event->getTriggerBits());
590 
591  //Set target position
592  setTargetPos(event->getTargetPos());
593 
594  //Set beam info
595  setTurnID(event->getTurnID());
596  setRFID(event->getRFID());
597  setIntensity(event->getIntensityAll());
598 
599  //Set the trigger emu info
600  setTriggerEmu(event->isEmuTriggered());
601  setNRoads(event->getNRoads());
602 }
603 
605 {
606  //set everything to empty or impossible numbers
607  fAllHits.clear();
608  for(Int_t i = 0; i < nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes+1; i++) fNHits[i] = 0;
609 
610  fRunID = -1;
611  fSpillID = -1;
612  fEventID = -1;
613 
614  fTriggerEmu = -1;
615  for(int i = 0; i < 4; ++i) fNRoads[i] = 0;
616 
617  fTurnID = -1;
618  fRFID = -1;
619  for(int i = 0; i < 33; ++i) fIntensity[i] = -1;
620 
621  fTriggerBits = 0;
622  fTriggerHits.clear();
623 }
624 
625 void SRawEvent::setTriggerBits(Int_t triggers[])
626 {
627  fTriggerBits = 0;
628  for(int i = 0; i < 10; ++i)
629  {
630  if(triggers[i] == 0) continue;
631  fTriggerBits |= triggerBit(i);
632  }
633 }
634 
636 {
638 }
639 
641 {
643 }
644 
645 void SRawEvent::print(std::ostream& os) const
646 {
647  os << "RunID: " << fRunID << ", EventID: " << fEventID << "===============" << std::endl;
648  for(Int_t i = 1; i <= nChamberPlanes; i++)
649  {
650  os << "Layer " << i << " has " << fNHits[i] << " hits." << std::endl;
651  }
652  os << "===================================================================" << std::endl;
653 
654  return;
655  for(auto iter = fAllHits.begin(); iter != fAllHits.end(); ++iter)
656  {
657  iter->print();
658  }
659  os << "===================================================================" << std::endl;
660 }
#define nPropPlanes
Definition: GlobalConsts.h:8
#define nChamberPlanes
Definition: GlobalConsts.h:6
#define nDarkPhotonPlanes
Definition: GlobalConsts.h:9
#define nHodoPlanes
Definition: GlobalConsts.h:7
ClassImp(Hit) ClassImp(SRawEvent) Hit
Definition: SRawEvent.cxx:21
#define triggerBit(n)
Definition: SRawEvent.h:28
const int dID[24]
Definition: SimpleTree.cc:19
Definition of hit structure.
Definition: SRawEvent.h:35
Int_t getElementID(Int_t uniqueID)
Definition: SRawEvent.h:66
Int_t getDetectorID(Int_t uniqueID)
Definition: SRawEvent.h:65
Float_t pos
Definition: SRawEvent.h:82
Float_t tdcTime
Definition: SRawEvent.h:80
Short_t elementID
Definition: SRawEvent.h:79
Short_t detectorID
Definition: SRawEvent.h:78
Int_t uniqueID()
Definition: SRawEvent.h:64
bool operator==(const Hit &elem) const
Definition: SRawEvent.cxx:68
bool operator<(const Hit &elem) const
Definition: SRawEvent.cxx:38
void clear()
Clear the internal event structure.
Definition: SRawEvent.cxx:604
Short_t * getNRoads()
Definition: SRawEvent.h:189
Int_t getNHitsInH1()
Definition: SRawEvent.cxx:493
void reIndex(bool doSort=false)
Reset the number hits on each plane.
Definition: SRawEvent.cxx:559
void setTurnID(Int_t turnID)
Definition: SRawEvent.h:207
Int_t getNHitsInD2()
Definition: SRawEvent.cxx:455
void mergeEvent(const SRawEvent &rawEvent)
Merge a event to this event.
Definition: SRawEvent.cxx:570
void setRFID(Int_t rfID)
Definition: SRawEvent.h:208
std::vector< Hit > & getTriggerHits()
Definition: SRawEvent.h:142
Int_t getNPropHitsAll()
Definition: SRawEvent.cxx:403
Int_t getSpillID()
Definition: SRawEvent.h:151
Int_t getNHitsInP2()
Definition: SRawEvent.cxx:548
void setTargetPos(Short_t targetPos)
Definition: SRawEvent.h:196
Int_t getNHitsInD3()
Definition: SRawEvent.cxx:466
std::list< Int_t > getHitsIndexInDetectors(std::vector< Int_t > &detectorIDs)
Definition: SRawEvent.cxx:233
Int_t * getIntensityAll()
Definition: SRawEvent.h:205
std::list< SRawEvent::hit_pair > getPartialHitPairsInSuperDetector(Short_t detectorID)
Definition: SRawEvent.cxx:254
void setTriggerEmu(bool flag)
Definition: SRawEvent.h:190
Int_t getEventID()
Definition: SRawEvent.h:150
void setTriggerBits(Int_t triggers[])
Definition: SRawEvent.cxx:625
Int_t getNHodoHitsAll()
Definition: SRawEvent.cxx:392
Int_t getNHitsInH2()
Definition: SRawEvent.cxx:504
void insertHit(Hit h)
Insert a new hit.
Definition: SRawEvent.cxx:131
Int_t getTriggerBits()
Set/get the trigger types.
Definition: SRawEvent.h:174
Int_t getRFID()
Definition: SRawEvent.h:200
Int_t getNHitsInH4()
Definition: SRawEvent.cxx:526
void setNRoads(Short_t nRoads[])
Definition: SRawEvent.h:191
Int_t getNHitsInD3p()
Definition: SRawEvent.cxx:471
Hit getHit(Int_t index)
Definition: SRawEvent.h:144
Int_t getNHitsInDetector(Short_t detectorID)
Definition: SRawEvent.h:137
std::list< Int_t > getHitsIndexInSuperDetector(Short_t detectorID)
Definition: SRawEvent.cxx:218
Int_t getNHitsInD3m()
Definition: SRawEvent.cxx:482
bool isEmuTriggered()
Definition: SRawEvent.h:182
Int_t getIntensity()
Definition: SRawEvent.h:201
Int_t getNHitsInD0()
Definition: SRawEvent.cxx:433
void print(std::ostream &os=std::cout) const
Print for debugging purposes.
Definition: SRawEvent.cxx:645
void setIntensity(const Int_t intensity[])
Definition: SRawEvent.h:209
bool isNIMTriggered()
Definition: SRawEvent.cxx:635
bool isFPGATriggered()
Definition: SRawEvent.cxx:640
std::vector< Hit > & getAllHits()
Definition: SRawEvent.h:141
Int_t getNHitsInD1()
Definition: SRawEvent.cxx:444
Int_t getTurnID()
Definition: SRawEvent.h:199
std::list< Int_t > getHitsIndexInDetector(Short_t detectorID)
Gets.
Definition: SRawEvent.cxx:186
std::list< Int_t > getAdjacentHitsIndex(Hit &_hit)
Definition: SRawEvent.cxx:352
void DeepClone(SRawEvent *c)
Definition: SRawEvent.cxx:97
Int_t getNHitsInH3()
Definition: SRawEvent.cxx:515
Int_t getNChamberHitsAll()
Definition: SRawEvent.cxx:381
void setEventInfo(Int_t runID, Int_t spillID, Int_t eventID)
Sets.
Definition: SRawEvent.cxx:124
Int_t getNHitsInDetectors(std::vector< Int_t > &detectorIDs)
Definition: SRawEvent.cxx:414
Int_t getTargetPos()
Definition: SRawEvent.h:195
Int_t getRunID()
Definition: SRawEvent.h:149
Int_t findHit(Short_t detectorID, Short_t elementID)
Find a hit – binary search since hit list is sorted.
Definition: SRawEvent.cxx:140
bool isTriggeredBy(Int_t trigger)
Definition: SRawEvent.h:177
Int_t getNHitsInP1()
Definition: SRawEvent.cxx:537