Class Reference for E1039 Core & Analysis Software
TrigRoads.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 #include <sstream>
4 #include <cstring>
5 #include <vector>
6 #include "TrigRoads.h"
7 using namespace std;
8 namespace UtilTrigger {
9 
10 TrigRoads::TrigRoads(const int pol, const int top_bot)
11  : m_file_name("")
12  , m_pol(pol)
13  , m_top_bot(top_bot)
14 {
15  ;
16 }
17 
19 {
20  if (idx < 0 || idx > (int)m_roads.size()) return 0;
21  return &m_roads[idx];
22 }
23 
24 TrigRoad* TrigRoads::FindRoad(const int road_id)
25 {
26  auto it = m_idx_map.find(road_id);
27  if (it != m_idx_map.end()) return &m_roads[it->second];
28  return 0;
29 }
30 
31 int TrigRoads::LoadConfig(const std::string file_name)
32 {
33  //cout << "TrigRoads::LoadConfig(" << file_name << ")\n";
34  m_roads.clear();
35  m_idx_map.clear();
36  m_file_name = file_name;
37  ifstream ifs(file_name);
38  if (! ifs) return 1;
39 
40  int idx = 0;
41  string buffer;
42  istringstream iss;
43  while (getline(ifs, buffer)) {
44  if (buffer[0] == '#' || buffer[0] == 'r') continue; // 'r' of 'roadID'
45  iss.clear(); // clear any error flags
46  iss.str(buffer);
47 
48  TrigRoad road;
49  if (! (iss >> road.road_id >> road.charge
50  >> road.H1X >> road.H2X >> road.H3X >> road.H4X)) continue;
51  if (road.road_id * m_top_bot <= 0) continue; // top-bottom mismatch
52  if (road.charge * m_pol <= 0) continue; // charge mismatch
53  m_roads.push_back(road);
54  m_idx_map[road.road_id] = idx++;
55  }
56  ifs.close();
57  return 0; // no validation so far
58 }
59 
60 std::string TrigRoads::str(const int level) const
61 {
62  ostringstream oss;
63  oss << (m_pol > 0 ? '+' : '-') << (m_top_bot > 0 ? 'T' : 'B');
64  if (level > 0) oss << "[" << m_roads.size() << "]";
65  if (level > 1) {
66  for (auto it = m_roads.begin(); it != m_roads.end(); it++) oss << " " << it->str(level - 2);
67  }
68  return oss.str();
69 }
70 
71 }; // End of "namespace UtilTrigger"
int LoadConfig(const std::string file_name)
Definition: TrigRoads.cc:31
TrigRoad * FindRoad(const int road_id)
Definition: TrigRoads.cc:24
std::string str(const int level=0) const
Definition: TrigRoads.cc:60
TrigRoad * GetRoad(const int idx)
Definition: TrigRoads.cc:18