11 int Hodo2Road(
const int h1,
const int h2,
const int h3,
const int h4,
const int tb)
13 if (h1 * h2 * h3 * h4 * tb == 0)
return 0;
14 int road = (h1-1)*16*16*16 + (h2-1)*16*16 + (h3-1)*16 + h4;
15 return (tb > 0 ? +1 : -1) * road;
19 void Road2Hodo(
const int road,
int& h1,
int& h2,
int& h3,
int& h4,
int& tb)
22 h1 = h2 = h3 = h4 = tb = 0;
25 int rr = abs(road) - 1;
26 h1 = 1 + (rr/16/16/16);
27 h2 = 1 + (rr/16/16 ) %16;
28 h3 = 1 + (rr/16 ) %16;
30 tb = road>0 ? +1 : -1;
44 memset(list_ele_id, 0,
sizeof(list_ele_id));
48 if (name[0] !=
'H')
continue;
52 }
else if (name[2] ==
'B') {
58 int station = (name[1] -
'0');
59 if (list_ele_id[station] != 0)
return 0;
62 return Hodo2Road(list_ele_id[1], list_ele_id[2], list_ele_id[3], list_ele_id[4], tb);
static GeomSvc * instance()
singlton instance
std::string getDetectorName(const int &detectorID) const
An SQ interface class to hold a list of SQHit objects.
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.
void Road2Hodo(const int road, int &h1, int &h2, int &h3, int &h4, int &tb)
Convert a roadset ID to a set of hodo IDs.
int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
Convert a set of hodo IDs to a roadset ID.
int ExtractRoadID(const SQHitVector *vec)
Find a unique road in the given list of SQHits.