Class Reference for E1039 Core & Analysis Software
TrigRoad.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <cstring>
4 #include "TrigRoad.h"
5 using namespace std;
6 namespace UtilTrigger {
7 
8 TrigRoad::TrigRoad()
9  : road_id(0)
10  , charge (0)
11  , H1X (0)
12  , H2X (0)
13  , H3X (0)
14  , H4X (0)
15 {
16  ;
17 }
18 
19 void TrigRoad::Road2Hodo(const int road, int& h1, int& h2, int& h3, int& h4, int& tb)
20 {
21  int rr = abs(road) - 1;
22  h1 = 1 + (rr / 4096);
23  h2 = 1 + (rr / 256) % 16;
24  h3 = 1 + (rr / 16) % 16;
25  h4 = 1 + rr % 16;
26  tb = road / abs(road);
27 }
28 
29 int TrigRoad::Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
30 {
31  int rr = 4096*(h1-1) + 256*(h2-1) + 16*(h3-1) + h4;
32  if (tb < 0) rr *= -1;
33  return rr;
34 }
35 
36 std::string TrigRoad::str(const int level) const
37 {
38  ostringstream oss;
39  oss << road_id;
40  if (level > 0) oss << "[" << H1X << "," << H2X << "," << H3X << "," << H4X << "]";
41  if (level > 1) oss << (charge > 0 ? '+' : '-');
42  return oss.str();
43 }
44 
45 }; // End of "namespace UtilTrigger"
static void Road2Hodo(const int road, int &h1, int &h2, int &h3, int &h4, int &tb)
Definition: TrigRoad.cc:19
std::string str(const int level=0) const
Definition: TrigRoad.cc:36
static int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
Definition: TrigRoad.cc:29