Class Reference for E1039 Core & Analysis Software
TrigRoadset.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 #include <sstream>
4 #include <cstring>
5 #include <TSystem.h>
6 #include "TrigRoadset.h"
7 using namespace std;
8 namespace UtilTrigger {
9 
10 TrigRoadset::TrigRoadset()
11  : m_dir_conf("")
12  , m_roadset(0)
13  , m_LBTop(0)
14  , m_LBBot(0)
15  , m_pos_top(+1, +1)
16  , m_pos_bot(+1, -1)
17  , m_neg_top(-1, +1)
18  , m_neg_bot(-1, -1)
19 {
20  ;
21 }
22 
23 int TrigRoadset::LoadConfig(const std::string dir)
24 {
25  int ret = 0;
26  ret += m_pos_top.LoadConfig(dir+"/rs_LB_pos_top.txt");
27  ret += m_pos_bot.LoadConfig(dir+"/rs_LB_pos_bot.txt");
28  ret += m_neg_top.LoadConfig(dir+"/rs_LB_neg_top.txt");
29  ret += m_neg_bot.LoadConfig(dir+"/rs_LB_neg_bot.txt");
30  return ret;
31 }
32 
33 int TrigRoadset::LoadConfig(const int roadset_id)
34 {
35  m_roadset = roadset_id;
36  ostringstream oss;
37  if (m_dir_conf != "") oss << m_dir_conf;
38  else oss << gSystem->Getenv("E1039_RESOURCE") << "/trigger/rs";
39  oss << "/rs" << roadset_id;
40  return LoadConfig(oss.str());
41 }
42 
43 int TrigRoadset::LoadConfig(const int firmware_LBTop, const int firmware_LBBot)
44 {
45  ostringstream oss;
46  oss << gSystem->Getenv("E1039_RESOURCE") << "/trigger/rs/firmware_ctrl.txt";
47  string fn_ctrl = oss.str();
48  //cout << "TrigRoadset::LoadConfig(" << firmware_LBTop << ", " << firmware_LBBot << "): " << fn_ctrl << endl;
49  ifstream ifs(fn_ctrl);
50  if (! ifs) return 1;
51 
52  int roadset_id = -1;
53  string buffer;
54  istringstream iss;
55  while (getline(ifs, buffer)) {
56  if (buffer[0] == '#') continue;
57  iss.clear(); // clear any error flags
58  iss.str(buffer);
59 
60  int id;
61  string str_top, str_bot;
62  if (! (iss >> id >> str_top >> str_bot)) continue;
63  if (str_top.substr(0, 4) != "0xB0") continue;
64  if (str_bot.substr(0, 4) != "0xB1") continue;
65  int top = stoi(str_top.substr(2), 0, 16);
66  int bot = stoi(str_bot.substr(2), 0, 16);
67  if (top == firmware_LBTop && bot == firmware_LBBot) {
68  roadset_id = id;
69  m_LBTop = top;
70  m_LBBot = bot;
71  break;
72  }
73  }
74  ifs.close();
75  if (roadset_id < 0) return 2;
76  return LoadConfig(roadset_id);
77 }
78 
79 std::string TrigRoadset::str(const int level) const
80 {
81  ostringstream oss;
82  oss << m_roadset;
83  if (level > 0) oss << "[" << hex << m_LBTop << "," << m_LBBot << dec << "]";
84  if (level > 1) {
85  oss << "\n " << m_pos_top.str(level-2)
86  << "\n " << m_pos_bot.str(level-2)
87  << "\n " << m_neg_top.str(level-2)
88  << "\n " << m_neg_bot.str(level-2);
89  }
90  return oss.str();
91 }
92 
93 }; // End of "namespace UtilTrigger"
int LoadConfig(const std::string file_name)
Definition: TrigRoads.cc:31
std::string str(const int level=0) const
Definition: TrigRoads.cc:60
int LoadConfig(const std::string dir)
Definition: TrigRoadset.cc:23
std::string str(const int level=0) const
Definition: TrigRoadset.cc:79