Class Reference for E1039 Core & Analysis Software
UtilSRawEvent.cxx
Go to the documentation of this file.
1 //#include <iomanip>
2 #include <phool/phool.h>
6 #include <ktracker/SRawEvent.h>
7 #include "UtilSRawEvent.h"
8 using namespace std;
9 
10 bool UtilSRawEvent::SetEvent(SRawEvent* sraw, const SQEvent* evt, const bool do_assert)
11 {
12  if (!evt) {
13  if (do_assert) {
14  cout << PHWHERE << ": SQEvent == 0. Abort." << endl;
15  exit(1);
16  }
17  sraw->setEventInfo(0, 0, 0);
18  sraw->setTriggerBits(0);
19  return false;
20  }
21  int run_id = evt->get_run_id();
22  int spill_id = evt->get_spill_id();
23  int event_id = evt->get_event_id();
24  sraw->setEventInfo(run_id, spill_id, event_id);
25 
27  int trig_bits = 0;
28  if (evt->get_trigger(SQEvent::MATRIX1)) trig_bits |= SRawEvent::MATRIX1;
29  if (evt->get_trigger(SQEvent::MATRIX2)) trig_bits |= SRawEvent::MATRIX2;
30  if (evt->get_trigger(SQEvent::MATRIX3)) trig_bits |= SRawEvent::MATRIX3;
31  if (evt->get_trigger(SQEvent::MATRIX4)) trig_bits |= SRawEvent::MATRIX4;
32  if (evt->get_trigger(SQEvent::MATRIX5)) trig_bits |= SRawEvent::MATRIX5;
33  if (evt->get_trigger(SQEvent::NIM1 )) trig_bits |= SRawEvent::NIM1 ;
34  if (evt->get_trigger(SQEvent::NIM2 )) trig_bits |= SRawEvent::NIM2 ;
35  if (evt->get_trigger(SQEvent::NIM3 )) trig_bits |= SRawEvent::NIM3 ;
36  if (evt->get_trigger(SQEvent::NIM4 )) trig_bits |= SRawEvent::NIM4 ;
37  if (evt->get_trigger(SQEvent::NIM5 )) trig_bits |= SRawEvent::NIM5 ;
38  sraw->setTriggerBits(trig_bits);
39 
40  return true;
41 }
42 
43 bool UtilSRawEvent::SetSpill(SRawEvent* sraw, const SQSpill* sp, const bool do_assert)
44 {
45  if (!sp) {
46  if (do_assert) {
47  cout << PHWHERE << ": SQSpill == 0. Abort." << endl;
48  exit(1);
49  }
50  sraw->setTargetPos(1);
51  return false;
52  }
53  sraw->setTargetPos(sp->get_target_pos());
54  return true;
55 }
56 
57 bool UtilSRawEvent::SetHit(SRawEvent* sraw, const SQHitVector* hit_vec, std::map<int, size_t>* hitID_idx, const bool do_assert)
58 {
59  sraw->emptyHits();
60  if (hitID_idx) hitID_idx->clear();
61 
62  if (!hit_vec) {
63  if (do_assert) {
64  cout << PHWHERE << ": SQHitVector == 0. Abort." << endl;
65  exit(1);
66  }
67  return false;
68  }
69  for(size_t idx = 0; idx < hit_vec->size(); ++idx) {
70  const SQHit* sq_hit = hit_vec->at(idx);
71  if (hitID_idx) (*hitID_idx)[sq_hit->get_hit_id()] = idx;
72 
73  Hit h;
74  h.index = sq_hit->get_hit_id();
75  h.detectorID = sq_hit->get_detector_id();
76  h.elementID = sq_hit->get_element_id();
77  h.tdcTime = sq_hit->get_tdc_time();
78  h.driftDistance = fabs(sq_hit->get_drift_distance()); //MC L-R info removed here
79  h.pos = sq_hit->get_pos();
80  if(sq_hit->is_in_time()) h.setInTime();
81  sraw->insertHit(h);
82  }
83  sraw->reIndex(true);
84  return true;
85 }
86 
87 bool UtilSRawEvent::SetTriggerHit(SRawEvent* sraw, const SQHitVector* hit_vec, std::map<int, size_t>* hitID_idx, const bool do_assert)
88 {
89  sraw->emptyTriggerHits();
90  if (hitID_idx) hitID_idx->clear();
91 
92  if (!hit_vec) {
93  if (do_assert) {
94  cout << PHWHERE << ": SQHitVector == 0. Abort." << endl;
95  exit(1);
96  }
97  return false;
98  }
99  for(size_t idx = 0; idx < hit_vec->size(); ++idx) {
100  const SQHit* sq_hit = hit_vec->at(idx);
101  if (hitID_idx) (*hitID_idx)[sq_hit->get_hit_id()] = idx;
102 
103  Hit h;
104  h.index = sq_hit->get_hit_id();
105  h.detectorID = sq_hit->get_detector_id();
106  h.elementID = sq_hit->get_element_id();
107  h.tdcTime = sq_hit->get_tdc_time();
108  h.driftDistance = fabs(sq_hit->get_drift_distance()); //MC L-R info removed here
109  h.pos = sq_hit->get_pos();
110  if(sq_hit->is_in_time()) h.setInTime();
111  sraw->insertTriggerHit(h);
112  }
113  return true;
114 }
Definition of hit structure.
Definition: SRawEvent.h:35
Int_t index
Definition: SRawEvent.h:77
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
void setInTime(bool f=true)
Definition: SRawEvent.h:56
Float_t driftDistance
Definition: SRawEvent.h:81
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
virtual int get_run_id() const =0
Return the run ID.
@ MATRIX2
Definition: SQEvent.h:28
@ NIM5
Definition: SQEvent.h:26
@ MATRIX1
Definition: SQEvent.h:27
@ NIM4
Definition: SQEvent.h:25
@ NIM2
Definition: SQEvent.h:23
@ NIM1
Definition: SQEvent.h:22
@ MATRIX3
Definition: SQEvent.h:29
@ NIM3
Definition: SQEvent.h:24
@ MATRIX4
Definition: SQEvent.h:30
@ MATRIX5
Definition: SQEvent.h:31
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
virtual int get_spill_id() const =0
Return the spill ID.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
virtual const SQHit * at(const size_t idkey) const =0
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
Definition: SQHit.h:57
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit.h:90
virtual float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
Definition: SQHit.h:60
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit.h:39
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit.h:54
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
virtual short get_target_pos() const
Return the target position in this spill.
Definition: SQSpill.h:41
void reIndex(bool doSort=false)
Reset the number hits on each plane.
Definition: SRawEvent.cxx:559
void setTargetPos(Short_t targetPos)
Definition: SRawEvent.h:196
void emptyTriggerHits()
Definition: SRawEvent.h:225
void insertTriggerHit(Hit h)
Definition: SRawEvent.h:160
void setTriggerBits(Int_t triggers[])
Definition: SRawEvent.cxx:625
void insertHit(Hit h)
Insert a new hit.
Definition: SRawEvent.cxx:131
void emptyHits()
Definition: SRawEvent.h:224
void setEventInfo(Int_t runID, Int_t spillID, Int_t eventID)
Sets.
Definition: SRawEvent.cxx:124
bool SetTriggerHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetEvent(SRawEvent *sraw, const SQEvent *evt, const bool do_assert=false)
bool SetHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetSpill(SRawEvent *sraw, const SQSpill *sp, const bool do_assert=false)
#define PHWHERE
Definition: phool.h:23