Class Reference for E1039 Core & Analysis Software
UtilTrigger.cc
Go to the documentation of this file.
1 #include <cmath>
2 #include <geom_svc/GeomSvc.h>
4 using namespace std;
5 namespace UtilTrigger {
6 
8 
11 int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
12 {
13  if (h1 * h2 * h3 * h4 * tb == 0) return 0; // if any is 0.
14  int road = (h1-1)*16*16*16 + (h2-1)*16*16 + (h3-1)*16 + h4;
15  return (tb > 0 ? +1 : -1) * road;
16 }
17 
19 void Road2Hodo(const int road, int& h1, int& h2, int& h3, int& h4, int& tb)
20 {
21  if (road == 0) {
22  h1 = h2 = h3 = h4 = tb = 0;
23  return;
24  }
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;
29  h4 = 1 + (rr ) %16;
30  tb = road>0 ? +1 : -1;
31 }
32 
34 
40 int ExtractRoadID(const SQHitVector* vec)
41 {
42  int tb = 0; // +1 for top, -1 for bottom
43  int list_ele_id[5]; // index = station
44  memset(list_ele_id, 0, sizeof(list_ele_id));
45  for (SQHitVector::ConstIter it = vec->begin(); it != vec->end(); it++) {
46  SQHit* hit = *it;
47  string name = GeomSvc::instance()->getDetectorName( hit->get_detector_id() );
48  if (name[0] != 'H') continue; // Skip non-hodoscope plane
49  if (name[2] == 'T') {
50  if (tb < 0) return 0; // Bad as top-bottom mixed up
51  tb = +1;
52  } else if (name[2] == 'B') {
53  if (tb > 0) return 0; // Bad as top-bottom mixed up
54  tb = -1;
55  } else {
56  continue; // Skip non-X plane
57  }
58  int station = (name[1] - '0');
59  if (list_ele_id[station] != 0) return 0; // Bad as multiple hits per station
60  list_ele_id[station] = hit->get_element_id();
61  }
62  return Hodo2Road(list_ele_id[1], list_ele_id[2], list_ele_id[3], list_ele_id[4], tb);
63 }
64 
65 }; // End of "namespace UtilTrigger"
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
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
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.
Definition: UtilTrigger.cc:19
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.
Definition: UtilTrigger.cc:11
int ExtractRoadID(const SQHitVector *vec)
Find a unique road in the given list of SQHits.
Definition: UtilTrigger.cc:40