51 map<int, double> id2time;
52 map<int, int > id2idx ;
53 for (
unsigned int idx = 0; idx < vec_in->
size(); idx++) {
54 const SQHit* hit = vec_in->
at(idx);
59 if (id2time.find(ele_id) == id2time.end() || time > id2time[ele_id]) {
60 id2time[ele_id] = time;
61 id2idx [ele_id] = idx;
67 for (map<int, int>::iterator it = id2idx.begin(); it != id2idx.end(); it++) {
101 static int run_id_now = 0;
102 static int evt_id_now = 0;
103 static map< int, vector<SQHit*> > hit_vec_map;
107 if (run_id_now == 0 || run_id != run_id_now || evt_id != evt_id_now) {
109 for (
auto it = hit_vec->
begin(); it != hit_vec->
end(); it++) {
117 return &hit_vec_map[det_id];
135 static int run_id_now = 0;
136 static int evt_id_now = 0;
137 static map< int, vector<SQHit*> > hit_vec_map;
141 if (run_id_now == 0 || run_id != run_id_now || evt_id != evt_id_now) {
143 for (
auto it = hit_vec->
begin(); it != hit_vec->
end(); it++) {
151 return &hit_vec_map[det_id];
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
An SQ interface class to hold one event header.
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.
virtual SQHitVector * Clone() const =0
std::vector< SQHit * >::const_iterator ConstIter
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
An SQ interface class to hold one detector hit.
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
virtual short get_element_id() const
Return the element ID of this hit.
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
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).
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...
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).
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).