16 , m_remove_mode(false)
38 SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
39 SQHitVector* trig_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQTriggerHitVector");
42 MergeHits(trig_hit_vec);
48 return m_and_mode ? MergeHitsAnd(vec_in) : MergeHitsOr(vec_in);
51 short CalibMergeH4::FindMergedId(
const short id)
53 if (
id == 0)
return 0;
56 if (name.substr(0, 2) !=
"H4")
return 0;
57 string name2 = (name[2] ==
'T' || name[2] ==
'B') ? name.substr(0, 3) : name.substr(0, 5);
58 if (name2 == name)
return 0;
64 for (
unsigned int ih = 0; ih < vec_in->
size(); ih++) {
67 if (det_new == 0)
continue;
81 typedef tuple<short, short, short> MergedGroup_t;
82 typedef map<short, SQHitVector*> MapVec_t;
83 typedef map<MergedGroup_t, MapVec_t> MapMapVec_t;
84 MapMapVec_t map_map_vec;
91 for (
int ih = vec_in->
size() - 1; ih >= 0; ih--) {
94 short det_new = FindMergedId(det_org);
95 if (det_new == 0)
continue;
97 if (map_vec->find(det_org) == map_vec->end()) {
98 (*map_vec)[det_org] = vec_in->
Clone();
99 map_vec->
at(det_org)->clear();
101 map_vec->at(det_org)->push_back(hit);
102 if (m_remove_mode) vec_in->
erase(ih);
106 for (MapMapVec_t::iterator it = map_map_vec.begin(); it != map_map_vec.end(); it++) {
107 short det_new = std::get<0>(it->first);
108 MapVec_t* map_vec = &it->second;
109 int n_det = map_vec->size();
114 for (MapVec_t::iterator it2 = map_vec->begin(); it2 != map_vec->end(); it2++) {
120 if (! hit_push) hit_push = hit;
126 }
else if (n_det > 2) {
127 cerr <<
"CalibMergeH4::MergeHitsAnd(): Unexpectedly found " << map_vec->size() <<
" detectors per merged detector." << endl;
130 for (MapVec_t::iterator it2 = map_vec->begin(); it2 != map_vec->end(); it2++) {
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
CalibMergeH4(const std::string &name="CalibMergeH4")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
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
std::string getDetectorName(const int &detectorID) const
An SQ interface class to hold a list of SQHit objects.
virtual SQHitVector * Clone() const =0
virtual size_t erase(const size_t idkey)=0
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
std::vector< SQHit * >::iterator Iter
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
virtual short get_level() const
Return the trigger level of this hit. Meaningful only if this hit is of V1495 TDC.
virtual void set_detector_id(const short a)
virtual void set_tdc_time(const float a)
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.
virtual SQHit * Clone() const