Class Reference for E1039 Core & Analysis Software
SQGeomAcc.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <algorithm>
5 #include <phool/PHNodeIterator.h>
6 #include <phool/PHIODataNode.h>
7 #include <phool/getClass.h>
8 #include <geom_svc/GeomSvc.h>
9 #include "SQGeomAcc.h"
10 using namespace std;
11 
12 SQGeomAcc::SQGeomAcc(const string& name)
13  : SubsysReco (name)
14  , m_mode_muon (UNDEF_MUON)
15  , m_mode_plane (UNDEF_PLANE)
16  , m_n_ele_h1_ex(0)
17  , m_vec_hit (0)
18 {
19  ;
20 }
21 
23 {
24  ;
25 }
26 
28 {
29  if (m_mode_muon == UNDEF_MUON) {
30  cout << Name() << ": The muon mode is not selected. Abort." << endl;
31  exit(1);
32  }
33  if (m_mode_plane == UNDEF_PLANE) {
34  cout << Name() << ": The plane mode is not selected. Abort." << endl;
35  exit(1);
36  }
38 }
39 
41 {
42  m_vec_hit = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
43  if(!m_vec_hit) {
44  cerr << Name() << ": Failed at getting SQHitVector. Abort." << endl;
46  }
48 }
49 
51 {
54  const vector<string> list_hodo_top_name = { "H1T", "H2T", "H3T", "H4T" };
55  const vector<string> list_hodo_bot_name = { "H1B", "H2B", "H3B", "H4B" };
56  const vector<string> list_cham_top_name = { "D0X", "D2X", "D3pX" };
57  const vector<string> list_cham_bot_name = { "D0X", "D2X", "D3mX" };
58  static vector<int> list_top_id;
59  static vector<int> list_bot_id;
60  static int h1t_id = 0;
61  static int h1b_id = 0;
62  if (list_top_id.size() == 0) { // Initialize
63  if (m_mode_plane == HODO || m_mode_plane == HODO_CHAM) { // Add hodoscope planes
64  for (unsigned int ii = 0; ii < list_hodo_top_name.size(); ii++) list_top_id.push_back(GetDetId(list_hodo_top_name[ii]));
65  for (unsigned int ii = 0; ii < list_hodo_bot_name.size(); ii++) list_bot_id.push_back(GetDetId(list_hodo_bot_name[ii]));
66  h1t_id = GetDetId("H1T");
67  h1b_id = GetDetId("H1B");
68  }
69  if (m_mode_plane == CHAM || m_mode_plane == HODO_CHAM) { // Add chamber planes
70  for (unsigned int ii = 0; ii < list_cham_top_name.size(); ii++) list_top_id.push_back(GetDetId(list_cham_top_name[ii]));
71  for (unsigned int ii = 0; ii < list_cham_bot_name.size(); ii++) list_bot_id.push_back(GetDetId(list_cham_bot_name[ii]));
72  }
73  }
74 
77  map< int, vector<int> > map_vec_det_id; // [track ID] -> vector<detector ID>
78  for (SQHitVector::ConstIter it = m_vec_hit->begin(); it != m_vec_hit->end(); it++) {
79  SQHit* hit = *it;
80  int det_id = hit->get_detector_id();
81  if (m_n_ele_h1_ex > 0 && (det_id == h1t_id || det_id == h1b_id)) { // Consider excluding edge elements
82  int ele_id = hit->get_element_id();
83  if (ele_id <= m_n_ele_h1_ex || ele_id > GeomSvc::instance()->getPlaneNElements(det_id) - m_n_ele_h1_ex) continue;
84  }
85  map_vec_det_id[ hit->get_track_id() ].push_back(det_id);
86  }
87 
89  int n_trk_top = 0; // N of tracks that make hits on all top planes
90  int n_trk_bot = 0; // N of tracks that make hits on all bottom planes
91  for (map< int, vector<int> >::iterator it = map_vec_det_id.begin(); it != map_vec_det_id.end(); it++) {
92  if (FindDetIdSet(it->second, list_top_id)) n_trk_top++;
93  if (FindDetIdSet(it->second, list_bot_id)) n_trk_bot++;
94  }
95 
96  return ( (m_mode_muon == SINGLE && n_trk_top + n_trk_bot >= 1)
97  || (m_mode_muon == SINGLE_T && n_trk_top >= 1)
98  || (m_mode_muon == SINGLE_B && n_trk_bot >= 1)
99  || (m_mode_muon == PAIR && n_trk_top + n_trk_bot >= 2)
100  || (m_mode_muon == PAIR_TBBT && n_trk_top >= 1 && n_trk_bot >= 1 )
101  || (m_mode_muon == PAIR_TTBB && (n_trk_top >= 2 || n_trk_bot >= 2))
103 }
104 
106 {
108 }
109 
111 int SQGeomAcc::GetDetId(const std::string& det_name)
112 {
113  int det_id = GeomSvc::instance()->getDetectorID(det_name);
114  if (det_id <= 0) {
115  cout << PHWHERE << ": No detector ID found for '" << det_name << "'. Abort." << endl;
116  exit(1);
117  }
118  return det_id;
119 }
120 
122 bool SQGeomAcc::FindDetIdSet(const std::vector<int>& vec_det_id_all, const std::vector<int>& vec_det_id_want)
123 {
124  for (unsigned int ii = 0; ii < vec_det_id_want.size(); ii++) {
125  int det_id = vec_det_id_want[ii];
126  if (find(vec_det_id_all.begin(), vec_det_id_all.end(), det_id) == vec_det_id_all.end()) return false;
127  }
128  return true;
129 }
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
int getDetectorID(const std::string &detectorName) const
Get the plane position.
Definition: GeomSvc.h:219
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
int Init(PHCompositeNode *topNode)
Definition: SQGeomAcc.cc:27
SQGeomAcc(const std::string &name="SQGeomAcc")
Definition: SQGeomAcc.cc:12
int process_event(PHCompositeNode *topNode)
Definition: SQGeomAcc.cc:50
@ PAIR_TBBT
Definition: SQGeomAcc.h:39
@ UNDEF_MUON
Definition: SQGeomAcc.h:34
@ SINGLE_B
Definition: SQGeomAcc.h:37
@ SINGLE_T
Definition: SQGeomAcc.h:36
@ PAIR_TTBB
Definition: SQGeomAcc.h:40
@ UNDEF_PLANE
Definition: SQGeomAcc.h:43
@ HODO_CHAM
Definition: SQGeomAcc.h:46
virtual ~SQGeomAcc()
Definition: SQGeomAcc.cc:22
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: SQGeomAcc.cc:105
int InitRun(PHCompositeNode *topNode)
Definition: SQGeomAcc.cc:40
std::vector< SQHit * >::const_iterator ConstIter
Definition: SQHitVector.h:37
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
Definition: SQHit.h:66
#define PHWHERE
Definition: phool.h:23