27 int nn = road_list->
Size();
30 if (i_begin == 0) i_begin = 1;
31 else if (i_begin < 0) i_begin = nn + i_begin + 1;
33 if (i_end == 0) i_end = nn;
34 else if (i_end < 0) i_end = nn + i_end + 1;
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;
41 for (
int ii = i_begin; ii <= i_end; ii++) {
43 os <<
" " << setw(5) << ii <<
": "
45 << setw(5) << info->
GetCount () <<
" "
49 << setw(6) << info->
GetFoM() << endl;
55 const string dir_base =
"roadset";
56 string dir_id = dir_base +
"/" + id;
57 gSystem->mkdir(dir_id.c_str(),
true);
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++) {
63 oss << dir_id <<
"/" << name[ii] <<
".txt";
64 ofstream ofs(oss.str());
76 cout <<
"UtilRoad::ReadFromFile():\n";
77 const string dir_base =
"roadset";
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++) {
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;
92 while (ifs >> road_id >> count >> weight) map[ii]->
Add(road_id, count, weight);
94 cout << map[ii]->
Size() << endl;
double GetWeightBG() const
Class to hold an ordered set (i.e. vector) of roads.
Class to hold a non-ordered set (i.e. map) of roads.
InfoMap::const_iterator ConstIter
void Add(const int road, const double weight, const int count=1)
void PrintList(RoadList *road_list, int i_begin=0, int i_end=0, std::ostream &os=std::cout)
void ReadFromFile(RoadMap *pos_top, RoadMap *pos_bot, RoadMap *neg_top, RoadMap *neg_bot, const std::string id)
void WriteToFile(const RoadMap *pos_top, const RoadMap *pos_bot, const RoadMap *neg_top, const RoadMap *neg_bot, const std::string id)