14 , m_mode_muon (UNDEF_MUON)
15 , m_mode_plane (UNDEF_PLANE)
30 cout <<
Name() <<
": The muon mode is not selected. Abort." << endl;
34 cout <<
Name() <<
": The plane mode is not selected. Abort." << endl;
42 m_vec_hit = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
44 cerr <<
Name() <<
": Failed at getting SQHitVector. Abort." << endl;
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) {
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");
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]));
77 map< int, vector<int> > map_vec_det_id;
81 if (m_n_ele_h1_ex > 0 && (det_id == h1t_id || det_id == h1b_id)) {
83 if (ele_id <= m_n_ele_h1_ex || ele_id >
GeomSvc::instance()->getPlaneNElements(det_id) - m_n_ele_h1_ex)
continue;
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++;
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))
111 int SQGeomAcc::GetDetId(
const std::string& det_name)
115 cout <<
PHWHERE <<
": No detector ID found for '" << det_name <<
"'. Abort." << endl;
122 bool SQGeomAcc::FindDetIdSet(
const std::vector<int>& vec_det_id_all,
const std::vector<int>& vec_det_id_want)
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;
virtual const std::string Name() const
Returns the name of this module.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
int Init(PHCompositeNode *topNode)
SQGeomAcc(const std::string &name="SQGeomAcc")
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
std::vector< SQHit * >::const_iterator ConstIter
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
An SQ interface class to hold one detector hit.
virtual short get_element_id() const
Return the element ID of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.