Class Reference for E1039 Core & Analysis Software
UtilSQHit.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <geom_svc/GeomSvc.h>
5 #include "UtilSQHit.h"
6 using namespace std;
7 
16 SQHitVector* UtilSQHit::FindHits(const SQHitVector* vec_in, const std::string det_name, const bool in_time)
17 {
18  GeomSvc* geom = GeomSvc::instance();
19  return FindHits(vec_in, geom->getDetectorID(det_name), in_time);
20 }
21 
25 SQHitVector* UtilSQHit::FindHits(const SQHitVector* vec_in, const int det_id, const bool in_time)
26 {
27  SQHitVector* vec = vec_in->Clone();
28  vec->clear();
29  for (SQHitVector::ConstIter it = vec_in->begin(); it != vec_in->end(); it++) {
30  SQHit* hit = *it;
31  if (in_time && ! hit->is_in_time()) continue;
32  if (hit->get_detector_id() == det_id) vec->push_back(hit);
33  }
34  return vec;
35 }
36 
40 SQHitVector* UtilSQHit::FindFirstHits(const SQHitVector* vec_in, const std::string det_name, const bool in_time)
41 {
42  GeomSvc* geom = GeomSvc::instance();
43  return FindFirstHits(vec_in, geom->getDetectorID(det_name), in_time);
44 }
45 
49 SQHitVector* UtilSQHit::FindFirstHits(const SQHitVector* vec_in, const int det_id, const bool in_time)
50 {
51  map<int, double> id2time; // [element ID] = first (max) tdcTime;
52  map<int, int > id2idx ; // [element ID] = index of vec_in
53  for (unsigned int idx = 0; idx < vec_in->size(); idx++) {
54  const SQHit* hit = vec_in->at(idx);
55  if (in_time && ! hit->is_in_time()) continue;
56  if (hit->get_detector_id() != det_id) continue;
57  short ele_id = hit->get_element_id();
58  double time = hit->get_tdc_time();
59  if (id2time.find(ele_id) == id2time.end() || time > id2time[ele_id]) {
60  id2time[ele_id] = time;
61  id2idx [ele_id] = idx;
62  }
63  }
64 
65  SQHitVector* vec = vec_in->Clone();
66  vec->clear();
67  for (map<int, int>::iterator it = id2idx.begin(); it != id2idx.end(); it++) {
68  vec->push_back(vec_in->at(it->second));
69  }
70  return vec;
71 }
72 
76 std::vector<SQHit*>* UtilSQHit::FindHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const std::string det_name)
77 {
78  GeomSvc* geom = GeomSvc::instance();
79  return FindHitsFast(evt, hit_vec, geom->getDetectorID(det_name));
80 }
81 
83 
99 std::vector<SQHit*>* UtilSQHit::FindHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const int det_id)
100 {
101  static int run_id_now = 0;
102  static int evt_id_now = 0;
103  static map< int, vector<SQHit*> > hit_vec_map; // [det_id] => hit_vec
104 
105  int run_id = evt->get_run_id();
106  int evt_id = evt->get_event_id();
107  if (run_id_now == 0 || run_id != run_id_now || evt_id != evt_id_now) {
108  hit_vec_map.clear();
109  for (auto it = hit_vec->begin(); it != hit_vec->end(); it++) {
110  SQHit* hit = *it;
111  hit_vec_map[hit->get_detector_id()].push_back(hit);
112  }
113  run_id_now = run_id;
114  evt_id_now = evt_id;
115  }
116 
117  return &hit_vec_map[det_id];
118 }
119 
123 std::vector<SQHit*>* UtilSQHit::FindTriggerHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const std::string det_name)
124 {
125  GeomSvc* geom = GeomSvc::instance();
126  return FindTriggerHitsFast(evt, hit_vec, geom->getDetectorID(det_name));
127 }
128 
130 
133 std::vector<SQHit*>* UtilSQHit::FindTriggerHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const int det_id)
134 {
135  static int run_id_now = 0;
136  static int evt_id_now = 0;
137  static map< int, vector<SQHit*> > hit_vec_map; // [det_id] => hit_vec
138 
139  int run_id = evt->get_run_id();
140  int evt_id = evt->get_event_id();
141  if (run_id_now == 0 || run_id != run_id_now || evt_id != evt_id_now) {
142  hit_vec_map.clear();
143  for (auto it = hit_vec->begin(); it != hit_vec->end(); it++) {
144  SQHit* hit = *it;
145  hit_vec_map[hit->get_detector_id()].push_back(hit);
146  }
147  run_id_now = run_id;
148  evt_id_now = evt_id;
149  }
150 
151  return &hit_vec_map[det_id];
152 }
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
int getDetectorID(const std::string &detectorName) const
Get the plane position.
Definition: GeomSvc.h:219
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
virtual int get_run_id() const =0
Return the run 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 SQHitVector * Clone() const =0
std::vector< SQHit * >::const_iterator ConstIter
Definition: SQHitVector.h:37
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
virtual const SQHit * at(const size_t idkey) const =0
virtual void push_back(const SQHit *hit)=0
virtual size_t size() const =0
virtual void clear()=0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit.h:90
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
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
std::vector< SQHit * > * FindHitsFast(const SQEvent *evt, const SQHitVector *hit_vec, const std::string det_name)
Fast-extract a set of hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:76
SQHitVector * FindFirstHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of first hits that are of the given detector (det_name), where "first" means the earlie...
Definition: UtilSQHit.cc:40
std::vector< SQHit * > * FindTriggerHitsFast(const SQEvent *evt, const SQHitVector *hit_vec, const std::string det_name)
Fast-extract a set of trigger hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:123
SQHitVector * FindHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:16