Class Reference for E1039 Core & Analysis Software
UtilRoad.cc
Go to the documentation of this file.
1 #include <fstream>
2 #include <sstream>
3 #include <iomanip>
4 #include <TSystem.h>
5 #include "RoadMap.h"
6 #include "RoadList.h"
7 #include "RoadInfo.h"
8 #include "UtilRoad.h"
9 using namespace std;
10 
11 //void UtilRoad::MakeOrderedList(const RoadMap* road_map, RoadList* road_list)
12 //{
13 // //road_list.clear();
14 // //road_list.reserve(road_map.size());
15 // //cout << "N " << road_map->Size() << endl;
16 // for (RoadMap::ConstIter it = road_map->Begin(); it != road_map->End(); it++) {
17 // //cout << " I " << it->first << " " << it->second << endl;
18 // //int road = it->first;
19 // //it->second.SetRoadID(road);
20 // road_list->Add(it->second);
21 // }
22 // road_list->Sort();
23 //}
24 
25 void UtilRoad::PrintList(RoadList* road_list, int i_begin, int i_end, std::ostream& os)
26 {
27  int nn = road_list->Size();
28  if (nn == 0) return;
29 
30  if (i_begin == 0) i_begin = 1;
31  else if (i_begin < 0) i_begin = nn + i_begin + 1;
32 
33  if (i_end == 0) i_end = nn;
34  else if (i_end < 0) i_end = nn + i_end + 1;
35 
36  if (i_begin < 1) i_begin = 1;
37  if (i_end < 1) i_end = 1;
38  if (i_begin > nn) i_begin = nn;
39  if (i_end > nn) i_end = nn;
40 
41  for (int ii = i_begin; ii <= i_end; ii++) {
42  RoadInfo* info = road_list->Get(ii - 1);
43  os << " " << setw(5) << ii << ": "
44  << setw(6) << info->GetRoadID() << " "
45  << setw(5) << info->GetCount () << " "
46  << setw(6) << info->GetWeight() << " "
47  << setw(5) << info->GetCountBG () << " "
48  << setw(6) << info->GetWeightBG() << " "
49  << setw(6) << info->GetFoM() << endl;
50  }
51 }
52 
53 void UtilRoad::WriteToFile(const RoadMap* pos_top, const RoadMap* pos_bot, const RoadMap* neg_top, const RoadMap* neg_bot, const string id)
54 {
55  const string dir_base = "roadset";
56  string dir_id = dir_base + "/" + id;
57  gSystem->mkdir(dir_id.c_str(), true);
58 
59  string name[4] = { "pos_top", "pos_bot", "neg_top", "neg_bot" };
60  const RoadMap* map[4] = { pos_top , pos_bot , neg_top , neg_bot };
61  for (int ii = 0; ii < 4; ii++) {
62  ostringstream oss;
63  oss << dir_id << "/" << name[ii] << ".txt";
64  ofstream ofs(oss.str());
65  for (RoadMap::ConstIter it = map[ii]->Begin(); it != map[ii]->End(); it++) {
66  const RoadInfo* info = it->second;
67  if (! info->GetOnOff()) continue;
68  ofs << info->GetRoadID() << "\t" << info->GetCount() << "\t" << info->GetWeight() << "\n";
69  }
70  ofs.close();
71  }
72 }
73 
74 void UtilRoad::ReadFromFile(RoadMap* pos_top, RoadMap* pos_bot, RoadMap* neg_top, RoadMap* neg_bot, const std::string id)
75 {
76  cout << "UtilRoad::ReadFromFile():\n";
77  const string dir_base = "roadset";
78 
79  string name[4] = { "pos_top", "pos_bot", "neg_top", "neg_bot" };
80  RoadMap* map[4] = { pos_top , pos_bot , neg_top , neg_bot };
81  for (int ii = 0; ii < 4; ii++) {
82  ostringstream oss;
83  oss << dir_base << "/" << id << "/" << name[ii] << ".txt";
84  cout << " " << oss.str() << ": ";
85  ifstream ifs(oss.str());
86  if (! ifs.is_open()) {
87  cout << "Cannot open. Abort." << endl;
88  exit(1);
89  }
90  int road_id, count;
91  double weight;
92  while (ifs >> road_id >> count >> weight) map[ii]->Add(road_id, count, weight);
93  ifs.close();
94  cout << map[ii]->Size() << endl;
95  }
96 }
Class to hold one road.
Definition: RoadInfo.h:8
double GetWeightBG() const
Definition: RoadInfo.h:36
double GetFoM() const
Definition: RoadInfo.h:42
int GetCountBG() const
Definition: RoadInfo.h:35
int GetRoadID() const
Definition: RoadInfo.h:23
double GetWeight() const
Definition: RoadInfo.h:29
double GetOnOff() const
Definition: RoadInfo.h:40
int GetCount() const
Definition: RoadInfo.h:28
Class to hold an ordered set (i.e. vector) of roads.
Definition: RoadList.h:9
int Size() const
Definition: RoadList.h:17
RoadInfo * Get(int i)
Definition: RoadList.h:18
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
int Size() const
Definition: RoadMap.h:19
InfoMap::const_iterator ConstIter
Definition: RoadMap.h:14
void Add(const int road, const double weight, const int count=1)
Definition: RoadMap.cc:43
ConstIter End() const
Definition: RoadMap.h:21
void PrintList(RoadList *road_list, int i_begin=0, int i_end=0, std::ostream &os=std::cout)
Definition: UtilRoad.cc:25
void ReadFromFile(RoadMap *pos_top, RoadMap *pos_bot, RoadMap *neg_top, RoadMap *neg_bot, const std::string id)
Definition: UtilRoad.cc:74
void WriteToFile(const RoadMap *pos_top, const RoadMap *pos_bot, const RoadMap *neg_top, const RoadMap *neg_bot, const std::string id)
Definition: UtilRoad.cc:53