Class Reference for E1039 Core & Analysis Software
CalibMergeH4.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <cmath>
3 #include <interface_main/SQRun.h>
6 #include <phool/PHNodeIterator.h>
7 #include <phool/PHIODataNode.h>
8 #include <phool/getClass.h>
9 #include <geom_svc/GeomSvc.h>
10 #include "CalibMergeH4.h"
11 using namespace std;
12 
13 CalibMergeH4::CalibMergeH4(const std::string& name)
14  : SubsysReco(name)
15  , m_and_mode (false)
16  , m_remove_mode(false)
17 {
18  ;
19 }
20 
22 {
23  ;
24 }
25 
27 {
29 }
30 
32 {
34 }
35 
37 {
38  SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
39  SQHitVector* trig_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQTriggerHitVector");
40  if (!hit_vec || !trig_hit_vec) return Fun4AllReturnCodes::ABORTEVENT;
41  MergeHits( hit_vec);
42  MergeHits(trig_hit_vec);
44 }
45 
46 int CalibMergeH4::MergeHits(SQHitVector* vec_in)
47 {
48  return m_and_mode ? MergeHitsAnd(vec_in) : MergeHitsOr(vec_in);
49 }
50 
51 short CalibMergeH4::FindMergedId(const short id)
52 {
53  if (id == 0) return 0;
54  GeomSvc* geom = GeomSvc::instance();
55  string name = geom->getDetectorName(id);
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; // The original name doesn't have 'u', 'd', 'l' nor 'r'.
59  return geom->getDetectorID(name2);
60 }
61 
62 int CalibMergeH4::MergeHitsOr(SQHitVector* vec_in)
63 {
64  for (unsigned int ih = 0; ih < vec_in->size(); ih++) {
65  SQHit* hit = vec_in->at(ih);
66  short det_new = FindMergedId(hit->get_detector_id());
67  if (det_new == 0) continue;
68  if (m_remove_mode) {
69  hit->set_detector_id(det_new); // Modify ID, which effectively removes the original one.
70  } else {
71  SQHit* hit_new = hit->Clone();
72  hit_new->set_detector_id(det_new);
73  vec_in->push_back(hit_new);
74  }
75  }
76  return 0;
77 }
78 
79 int CalibMergeH4::MergeHitsAnd(SQHitVector* vec_in)
80 {
81  typedef tuple<short, short, short> MergedGroup_t; // <merged det, element, level>
82  typedef map<short, SQHitVector*> MapVec_t; // <det, vector*>
83  typedef map<MergedGroup_t, MapVec_t> MapMapVec_t;
84  MapMapVec_t map_map_vec;
85  // MergedGroup_t represents a group of hits that are merged into one hit.
86  // Per merged group we expect two unmerged det IDs (ex. H4Tu & H4Td per H4T),
87  // which are used as the key of MapVec_t.
88  // Thus MapVec_t usually holds two hit vectors.
89 
91  for (int ih = vec_in->size() - 1; ih >= 0; ih--) {
92  SQHit* hit = vec_in->at(ih);
93  short det_org = hit->get_detector_id();
94  short det_new = FindMergedId(det_org);
95  if (det_new == 0) continue;
96  MapVec_t* map_vec = &map_map_vec[MergedGroup_t(det_new, hit->get_element_id(), hit->get_level())];
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();
100  }
101  map_vec->at(det_org)->push_back(hit);
102  if (m_remove_mode) vec_in->erase(ih);
103  }
104 
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();
110  if (n_det == 2) { // Good in the "and" mode. Merge all hits.
111  SQHit* hit_push = 0;
112  int nhit = 0;
113  double time = 0;
114  for (MapVec_t::iterator it2 = map_vec->begin(); it2 != map_vec->end(); it2++) {
115  SQHitVector* vec = it2->second;
116  for (SQHitVector::Iter it3 = vec->begin(); it3 != vec->end(); it3++) {
117  SQHit* hit = *it3;
118  time += hit->get_tdc_time();
119  nhit++;
120  if (! hit_push) hit_push = hit;
121  }
122  }
123  hit_push->set_tdc_time(time/nhit); // average
124  hit_push->set_detector_id(det_new);
125  vec_in->push_back(hit_push);
126  } else if (n_det > 2) {
127  cerr << "CalibMergeH4::MergeHitsAnd(): Unexpectedly found " << map_vec->size() << " detectors per merged detector." << endl;
128  }
129 
130  for (MapVec_t::iterator it2 = map_vec->begin(); it2 != map_vec->end(); it2++) {
131  SQHitVector* vec = it2->second;
132  vec->clear();
133  delete vec;
134  }
135  }
136  return 0;
137 }
138 
140 {
142 }
int Init(PHCompositeNode *topNode)
Definition: CalibMergeH4.cc:26
int process_event(PHCompositeNode *topNode)
Definition: CalibMergeH4.cc:36
virtual ~CalibMergeH4()
Definition: CalibMergeH4.cc:21
CalibMergeH4(const std::string &name="CalibMergeH4")
Definition: CalibMergeH4.cc:13
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
Definition: CalibMergeH4.cc:31
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
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
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
Definition: SQHitVector.h:38
virtual size_t size() const =0
virtual void clear()=0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual short get_level() const
Return the trigger level of this hit. Meaningful only if this hit is of V1495 TDC.
Definition: SQHit.h:51
virtual void set_detector_id(const short a)
Definition: SQHit.h:43
virtual void set_tdc_time(const float a)
Definition: SQHit.h:55
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
virtual SQHit * Clone() const
Definition: SQHit.h:35