Class Reference for E1039 Core & Analysis Software
SRawEvent.h
Go to the documentation of this file.
1 /*
2 SRawEvent.h
3 
4 Definition of the class SRawEvent, which essentially works as a
5 container of the raw hits information. It also provides serveral
6 query utility to retrieve the hit list from a specific plane, etc.
7 
8 Author: Kun Liu, liuk@fnal.gov
9 Created: 07-02-2012
10 */
11 
12 #ifndef _SRAWEVENT_H
13 #define _SRAWEVENT_H
14 
15 #include <GlobalConsts.h>
16 
17 #include <phool/PHObject.h>
18 
19 #include <iostream>
20 #include <vector>
21 #include <list>
22 #include <string>
23 
24 #include <TObject.h>
25 #include <TROOT.h>
26 #include <TVector3.h>
27 
28 #define triggerBit(n) (1 << (n))
29 #define hitFlagBit(n) (1 << (n))
30 
31 class EventReducer;
32 
34 class Hit: public PHObject
35 {
36 public:
37  //Constructor
38  Hit();
39  Hit(int uniqueID);
40  Hit(int detectorID, int elementID);
41 
43  void identify(std::ostream& os = std::cout) const {print(os);}
44  void Reset() {*this = Hit();}
45  int isValid() const {return true;}
46  Hit* Clone() const {return (new Hit(*this));}
47 
48  //Decompose the data quality flag
49  bool isInTime() const { return (flag & Hit::inTime) != 0; }
50  bool isHodoMask() const { return (flag & Hit::hodoMask) != 0; }
51  bool isTriggerMask() const { return (flag & Hit::triggerMask) != 0; }
52 
53  //Set the flag
54  void setFlag(UShort_t flag_input) { flag |= flag_input; }
55  void resetFlag(UShort_t flag_input) { flag &= ~flag_input; }
56  void setInTime(bool f = true) { f ? (flag |= inTime) : (flag &= ~inTime); }
57  void setHodoMask(bool f = true) { f ? (flag |= hodoMask) : (f &= ~hodoMask); }
58  void setTriggerMask(bool f = true) { f ? (flag |= triggerMask) : (flag &= ~triggerMask); }
59 
60  //Sign of this hit
61  Int_t getSign() { return driftDistance > 0 ? 1 : -1; }
62 
63  //convert detectorID and elementID into one number
64  Int_t uniqueID() { return detectorID*1000 + elementID; }
65  Int_t getDetectorID(Int_t uniqueID) { return uniqueID/1000; }
66  Int_t getElementID(Int_t uniqueID) { return uniqueID % 1000; }
67 
68  //overridden comparison operator for track seeding
69  bool operator<(const Hit& elem) const;
70  bool operator==(const Hit& elem) const;
71 
72  //Debugging output
73  void print(std::ostream& os = std::cout) const
74  { os << index << " : " << detectorID << " : " << elementID << " : " << pos << " : " << driftDistance << " : " << isInTime() << " : " << isHodoMask() << " : " << isTriggerMask() << std::endl; }
75 
76  //Data members
77  Int_t index; //unique index for identification
78  Short_t detectorID; //assigned for each detector plane
79  Short_t elementID;
80  Float_t tdcTime; //raw TDC time
81  Float_t driftDistance;
82  Float_t pos; //actual measurement in either X, Y, U or V direction
83 
84  //hit quality flag
86  {
90  };
91  UShort_t flag;
92 
93  ClassDef(Hit, 4)
94 };
95 
96 class SRawEvent: public PHObject
97 {
98 public:
99  SRawEvent();
100  ~SRawEvent();
101 
103  void identify(std::ostream& os = std::cout) const { print(os);}
104  void Reset() {*this = SRawEvent();}
105  int isValid() const {return true;}
106  SRawEvent* Clone() const {return (new SRawEvent(*this));}
107 
108  void DeepClone(SRawEvent *c);
109 
111  //Hit lists
112  std::list<Int_t> getHitsIndexInDetector(Short_t detectorID);
113  std::list<Int_t> getHitsIndexInDetector(Short_t detectorID, Double_t x_exp, Double_t win);
114  std::list<Int_t> getHitsIndexInSuperDetector(Short_t detectorID);
115  std::list<Int_t> getHitsIndexInDetectors(std::vector<Int_t>& detectorIDs);
116  std::list<Int_t> getAdjacentHitsIndex(Hit& _hit);
117 
118  Int_t getNHitsAll() { return fNHits[0]; }
119  Int_t getNTriggerHits() { return fTriggerHits.size(); }
120  Int_t getNChamberHitsAll();
121  Int_t getNHodoHitsAll();
122  Int_t getNPropHitsAll();
123 
124  Int_t getNHitsInD0();
125  Int_t getNHitsInD1();
126  Int_t getNHitsInD2();
127  Int_t getNHitsInD3();
128  Int_t getNHitsInD3p();
129  Int_t getNHitsInD3m();
130  Int_t getNHitsInH1();
131  Int_t getNHitsInH2();
132  Int_t getNHitsInH3();
133  Int_t getNHitsInH4();
134  Int_t getNHitsInP1();
135  Int_t getNHitsInP2();
136 
137  Int_t getNHitsInDetector(Short_t detectorID) { return fNHits[detectorID]; }
138  Int_t getNHitsInSuperDetector(Short_t detectorID) { return fNHits[2*detectorID-1] + fNHits[2*detectorID]; }
139  Int_t getNHitsInDetectors(std::vector<Int_t>& detectorIDs);
140 
141  std::vector<Hit>& getAllHits() { return fAllHits; }
142  std::vector<Hit>& getTriggerHits() { return fTriggerHits; }
143  Hit getTriggerHit(Int_t index) { return fTriggerHits[index]; }
144  Hit getHit(Int_t index) { return fAllHits[index]; }
145  Hit getHit(Short_t detectorID, Short_t elementID);
146  void setHitFlag(Int_t index, Short_t flag) { if(index < 0) return; fAllHits[index].setFlag(flag); }
147  void setHitFlag(Short_t detectorID, Short_t elementID, Short_t flag) { setHitFlag(findHit(detectorID, elementID), flag); }
148 
149  Int_t getRunID() { return fRunID; }
150  Int_t getEventID() { return fEventID; }
151  Int_t getSpillID() { return fSpillID; }
152 
154  void setEventInfo(Int_t runID, Int_t spillID, Int_t eventID);
155  void setHit(Int_t index, Hit h) { fAllHits[index] = h; }
156  void setTriggerHit(Int_t index, Hit h) { fTriggerHits[index] = h; }
157 
159  void insertHit(Hit h);
160  void insertTriggerHit(Hit h) { if(h.detectorID >= nChamberPlanes+1 && h.detectorID <= nChamberPlanes+nHodoPlanes) fTriggerHits.push_back(h); }
161 
163  Int_t findHit(Short_t detectorID, Short_t elementID);
164 
166  void reIndex(bool doSort = false);
167 
169  typedef std::pair<Int_t, Int_t> hit_pair;
170  std::list<SRawEvent::hit_pair> getPartialHitPairsInSuperDetector(Short_t detectorID);
171  std::list<SRawEvent::hit_pair> getPartialHitPairsInSuperDetector(Short_t detectorID, Double_t x_exp, Double_t wind);
172 
174  Int_t getTriggerBits() { return fTriggerBits; }
175  void setTriggerBits(Int_t triggers[]);
176  void setTriggerBits(Int_t triggers) { fTriggerBits = triggers; }
177  bool isTriggeredBy(Int_t trigger) { return (fTriggerBits & trigger) != 0; }
178  bool isNIMTriggered();
179  bool isFPGATriggered();
180 
181  //Set/get offline trigger emulation results
182  bool isEmuTriggered() { return fTriggerEmu > 0; }
183  Int_t getNRoadsPos() { return fNRoads[0] + fNRoads[1]; }
184  Int_t getNRoadsNeg() { return fNRoads[2] + fNRoads[3]; }
185  Int_t getNRoadsPosTop() { return fNRoads[0]; }
186  Int_t getNRoadsPosBot() { return fNRoads[1]; }
187  Int_t getNRoadsNegTop() { return fNRoads[2]; }
188  Int_t getNRoadsNegBot() { return fNRoads[3]; }
189  Short_t* getNRoads() { return fNRoads; }
190  void setTriggerEmu(bool flag) { fTriggerEmu = flag ? 1 : -1; }
191  void setNRoads(Short_t nRoads[]) { for(Int_t i = 0; i < 4; ++i) fNRoads[i] = nRoads[i]; }
192  void setNRoads(Int_t nRoads[]) { for(Int_t i = 0; i < 4; ++i) fNRoads[i] = nRoads[i]; }
193 
194  //Set/get the target position
195  Int_t getTargetPos() { return fTargetPos; }
196  void setTargetPos(Short_t targetPos) { fTargetPos = targetPos; }
197 
198  //Set/get the beam info
199  Int_t getTurnID() { return fTurnID; }
200  Int_t getRFID() { return fRFID; }
201  Int_t getIntensity() { return fIntensity[16]; }
202  Int_t getIntensity(Int_t i) { return fIntensity[i+16]; }
203  Int_t getIntensitySumBefore(Int_t n = 16) { Int_t sum = 0; for(Int_t i = n; i < 16; ++i) sum += fIntensity[i]; return sum; }
204  Int_t getIntensitySumAfter(Int_t n = 16) { Int_t sum = 0; for(Int_t i = 16; i < n+16; ++i) sum += fIntensity[i]; return sum; }
205  Int_t* getIntensityAll() { return fIntensity; }
206 
207  void setTurnID(Int_t turnID) { fTurnID = turnID; }
208  void setRFID(Int_t rfID) { fRFID = rfID; }
209  void setIntensity(const Int_t intensity[]) { for(Int_t i = 0; i < 33; ++i) fIntensity[i] = intensity[i]; }
210  void setIntensity(Int_t i, Int_t val) { fIntensity[i] = val; }
211  void setIntensity(Int_t val) { fIntensity[16] = val; }
212 
214  void mergeEvent(const SRawEvent& rawEvent);
215 
217  void setEventInfo(SRawEvent* event);
218 
220  void clear();
221 
223  void empty() { fAllHits.clear(); fTriggerHits.clear(); }
224  void emptyHits() { fAllHits.clear(); }
225  void emptyTriggerHits() { fTriggerHits.clear(); }
226 
228  void print (std::ostream& os = std::cout) const;
229 
231  friend class EventReducer;
232 
233 public:
234  //Trigger type
236  {
246  NIM5 = triggerBit(9)
247  };
248 
249 private:
250  //RunID, spillID, eventID
251  Int_t fRunID;
252  Int_t fEventID;
253  Int_t fSpillID;
254 
255  //Trigger bit
256  Int_t fTriggerBits;
257 
258  //Target pos
259  Short_t fTargetPos;
260 
261  //Beam intensity information
262  Int_t fTurnID;
263  Int_t fRFID;
264  Int_t fIntensity[33]; //16 before, one onset, and 16 after
265 
266  //Offline trigger simulation res
267  Short_t fTriggerEmu;
268  Short_t fNRoads[4]; //0, positive top; 1, positive bottom; 2, negative top; 3, negative bottom
269 
271  Int_t fNHits[nChamberPlanes+nHodoPlanes+nPropPlanes+nDarkPhotonPlanes+1]; //0 for all hits, 1, 2, ..., 24 for number of hits in plane 1, 2, ..., 24
272  std::vector<Hit> fAllHits;
273  std::vector<Hit> fTriggerHits;
274 
275  ClassDef(SRawEvent, 9)
276 };
277 
278 #endif
#define nPropPlanes
Definition: GlobalConsts.h:8
#define nChamberPlanes
Definition: GlobalConsts.h:6
#define nDarkPhotonPlanes
Definition: GlobalConsts.h:9
#define nHodoPlanes
Definition: GlobalConsts.h:7
#define hitFlagBit(n)
Definition: SRawEvent.h:29
#define triggerBit(n)
Definition: SRawEvent.h:28
Definition of hit structure.
Definition: SRawEvent.h:35
void resetFlag(UShort_t flag_input)
Definition: SRawEvent.h:55
Int_t getSign()
Definition: SRawEvent.h:61
Int_t index
Definition: SRawEvent.h:77
Int_t getElementID(Int_t uniqueID)
Definition: SRawEvent.h:66
bool isInTime() const
Definition: SRawEvent.h:49
Int_t getDetectorID(Int_t uniqueID)
Definition: SRawEvent.h:65
bool isTriggerMask() const
Definition: SRawEvent.h:51
void setFlag(UShort_t flag_input)
Definition: SRawEvent.h:54
hitQuality
Definition: SRawEvent.h:86
@ inTime
Definition: SRawEvent.h:87
@ hodoMask
Definition: SRawEvent.h:88
@ triggerMask
Definition: SRawEvent.h:89
Float_t pos
Definition: SRawEvent.h:82
void setHodoMask(bool f=true)
Definition: SRawEvent.h:57
Hit * Clone() const
Definition: SRawEvent.h:46
Float_t tdcTime
Definition: SRawEvent.h:80
Short_t elementID
Definition: SRawEvent.h:79
Short_t detectorID
Definition: SRawEvent.h:78
void setTriggerMask(bool f=true)
Definition: SRawEvent.h:58
void identify(std::ostream &os=std::cout) const
PHObject virtual overloads.
Definition: SRawEvent.h:43
Int_t uniqueID()
Definition: SRawEvent.h:64
void Reset()
Clear Event.
Definition: SRawEvent.h:44
void setInTime(bool f=true)
Definition: SRawEvent.h:56
void print(std::ostream &os=std::cout) const
Definition: SRawEvent.h:73
bool operator==(const Hit &elem) const
Definition: SRawEvent.cxx:68
bool operator<(const Hit &elem) const
Definition: SRawEvent.cxx:38
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SRawEvent.h:45
bool isHodoMask() const
Definition: SRawEvent.h:50
UShort_t flag
Definition: SRawEvent.h:91
Float_t driftDistance
Definition: SRawEvent.h:81
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 getNRoadsNegTop()
Definition: SRawEvent.h:187
Int_t getIntensity(Int_t i)
Definition: SRawEvent.h:202
Int_t getNRoadsPosTop()
Definition: SRawEvent.h:185
Int_t getNHitsInD2()
Definition: SRawEvent.cxx:455
void mergeEvent(const SRawEvent &rawEvent)
Merge a event to this event.
Definition: SRawEvent.cxx:570
SRawEvent * Clone() const
Definition: SRawEvent.h:106
void setRFID(Int_t rfID)
Definition: SRawEvent.h:208
std::vector< Hit > & getTriggerHits()
Definition: SRawEvent.h:142
Int_t getNPropHitsAll()
Definition: SRawEvent.cxx:403
std::pair< Int_t, Int_t > hit_pair
Type of pair with two adjacent wires.
Definition: SRawEvent.h:169
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SRawEvent.h:105
Int_t getSpillID()
Definition: SRawEvent.h:151
Int_t getNHitsInP2()
Definition: SRawEvent.cxx:548
void setTargetPos(Short_t targetPos)
Definition: SRawEvent.h:196
void emptyTriggerHits()
Definition: SRawEvent.h:225
Int_t getNHitsInD3()
Definition: SRawEvent.cxx:466
Int_t getNRoadsNeg()
Definition: SRawEvent.h:184
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
void insertTriggerHit(Hit h)
Definition: SRawEvent.h:160
Int_t getEventID()
Definition: SRawEvent.h:150
void setTriggerBits(Int_t triggers[])
Definition: SRawEvent.cxx:625
Int_t getNHodoHitsAll()
Definition: SRawEvent.cxx:392
void empty()
only empty the hit list, leave other information untouched
Definition: SRawEvent.h:223
Int_t getIntensitySumAfter(Int_t n=16)
Definition: SRawEvent.h:204
Hit getTriggerHit(Int_t index)
Definition: SRawEvent.h:143
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 getNHitsAll()
Definition: SRawEvent.h:118
Int_t getNHitsInH4()
Definition: SRawEvent.cxx:526
void setNRoads(Short_t nRoads[])
Definition: SRawEvent.h:191
void emptyHits()
Definition: SRawEvent.h:224
void setTriggerBits(Int_t triggers)
Definition: SRawEvent.h:176
void setIntensity(Int_t i, Int_t val)
Definition: SRawEvent.h:210
Int_t getNHitsInD3p()
Definition: SRawEvent.cxx:471
Int_t getIntensitySumBefore(Int_t n=16)
Definition: SRawEvent.h:203
Hit getHit(Int_t index)
Definition: SRawEvent.h:144
Int_t getNHitsInSuperDetector(Short_t detectorID)
Definition: SRawEvent.h:138
Int_t getNHitsInDetector(Short_t detectorID)
Definition: SRawEvent.h:137
void setHit(Int_t index, Hit h)
Definition: SRawEvent.h:155
std::list< Int_t > getHitsIndexInSuperDetector(Short_t detectorID)
Definition: SRawEvent.cxx:218
void setHitFlag(Short_t detectorID, Short_t elementID, Short_t flag)
Definition: SRawEvent.h:147
Int_t getNHitsInD3m()
Definition: SRawEvent.cxx:482
bool isEmuTriggered()
Definition: SRawEvent.h:182
void setNRoads(Int_t nRoads[])
Definition: SRawEvent.h:192
void Reset()
Clear Event.
Definition: SRawEvent.h:104
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
Int_t getNRoadsPos()
Definition: SRawEvent.h:183
bool isFPGATriggered()
Definition: SRawEvent.cxx:640
void setTriggerHit(Int_t index, Hit h)
Definition: SRawEvent.h:156
void identify(std::ostream &os=std::cout) const
PHObject virtual overloads.
Definition: SRawEvent.h:103
Int_t getNRoadsNegBot()
Definition: SRawEvent.h:188
void setIntensity(Int_t val)
Definition: SRawEvent.h:211
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
void setHitFlag(Int_t index, Short_t flag)
Definition: SRawEvent.h:146
Int_t getTargetPos()
Definition: SRawEvent.h:195
Int_t getRunID()
Definition: SRawEvent.h:149
Int_t getNTriggerHits()
Definition: SRawEvent.h:119
Int_t findHit(Short_t detectorID, Short_t elementID)
Find a hit – binary search since hit list is sorted.
Definition: SRawEvent.cxx:140
Int_t getNRoadsPosBot()
Definition: SRawEvent.h:186
bool isTriggeredBy(Int_t trigger)
Definition: SRawEvent.h:177
Int_t getNHitsInP1()
Definition: SRawEvent.cxx:537