Class Reference for E1039 Core & Analysis Software
GenRoadset.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <UtilAna/UtilTrigger.h>
4 #include "RoadInfo.h"
5 #include "UtilRoad.h"
6 #include "AnaSignal.h"
7 #include "GenRoadset.h"
8 using namespace std;
9 
10 GenRoadset::GenRoadset(const std::string label)
11  : AnaBase (label)
12  , m_map_pos_top (0)
13  , m_map_pos_bot (0)
14  , m_map_neg_top (0)
15  , m_map_neg_bot (0)
16 
17 {
18  m_list_pos_top.SetPNTB(+1, +1);
19  m_list_pos_bot.SetPNTB(+1, -1);
20  m_list_neg_top.SetPNTB(-1, +1);
21  m_list_neg_bot.SetPNTB(-1, -1);
22 }
23 
25 {
26  ;
27 }
28 
29 void GenRoadset::SetMap(AnaSignal* ana_signal)
30 {
31  m_map_pos_top = ana_signal->GetRoadMapPosTop();
32  m_map_pos_bot = ana_signal->GetRoadMapPosBot();
33  m_map_neg_top = ana_signal->GetRoadMapNegTop();
34  m_map_neg_bot = ana_signal->GetRoadMapNegBot();
35 
40 }
41 
42 void GenRoadset::GenerateRoadSetBySignal(const double frac_cut, const std::string rs_id)
43 {
44  if (frac_cut < 0 || frac_cut > 1) return;
50 }
51 
52 void GenRoadset::GenerateRoadSetByFoM(const double frac_cut, const std::string rs_id)
53 {
54  if (frac_cut < 0 || frac_cut > 1) return;
60 }
61 
62 void GenRoadset::GenerateSymmetricRoadSetByFoM(const double frac_cut, const std::string rs_id)
63 {
64  if (frac_cut < 0 || frac_cut > 1) return;
65 
68  int num_roads[4] = { 0, 0, 0, 0 };
69  double w_tot = 0;
70  for (int ir = 0; ir < 4; ir++) {
71  RoadList* roads = list_roads[ir];
72  roads->SortByFoM();
73  int n_ent = num_roads[ir] = roads->Size();
74  for (int ii = 0; ii < n_ent; ii++) w_tot += roads->Get(ii)->GetFoM();
75 
76  m_ofs << "RoadList: " << roads->GetPosNegStr() << " " << roads->GetTopBotStr() << "\n"
77  << " First Five\n";
78  UtilRoad::PrintList(roads, +1, +5, m_ofs);
79  m_ofs << " Last Five\n";
80  UtilRoad::PrintList(roads, -5, -1, m_ofs);
81  }
82 
83  double w_dis = 0;
84  while (true) {
85  int ir_min = -1;
86  double fom_min = 0;
87  for (int ir = 0; ir < 4; ir++) {
88  RoadList* roads = list_roads[ir];
89  RoadInfo* info = roads->Get(num_roads[ir] - 1);
90  double fom = info->GetFoM();
91  if (ir_min < 0 || fom < fom_min) {
92  ir_min = ir;
93  fom_min = fom;
94  }
95  }
96  RoadList* roads = list_roads[ir_min];
97  RoadInfo* info = roads->Get(--num_roads[ir_min]);
98  int road_id = info->GetRoadID();
99  //info->SetOnOff(false);
100  //w_dis += info->GetFoM();
101 
102  //int h1, h2, h3, h4, tb;
103  //UtilTrigger::Road2Hodo(road_id, h1, h2, h3, h4, tb);
104  int road_id4[4]; //{ m_list_pos_top, m_list_pos_bot, m_list_neg_top, m_list_neg_bot }
105  road_id4[ir_min] = road_id;
106  if (road_id == 0) { // pos_top
107  road_id4[1] = FlipRoadTopBottom(road_id);
108  road_id4[2] = FlipRoadLeftRight(road_id4[0]);
109  road_id4[3] = FlipRoadTopBottom(road_id4[2]);
110  } else if (road_id == 1) { // pos_bot
111  road_id4[0] = FlipRoadTopBottom(road_id);
112  road_id4[2] = FlipRoadLeftRight(road_id4[0]);
113  road_id4[3] = FlipRoadTopBottom(road_id4[2]);
114  } else if (road_id == 2) { // neg_top
115  road_id4[0] = FlipRoadLeftRight(road_id);
116  road_id4[1] = FlipRoadTopBottom(road_id4[0]);
117  road_id4[3] = FlipRoadTopBottom(road_id4[2]);
118  } else { // == 3, neg_bot
119  road_id4[2] = FlipRoadTopBottom(road_id);
120  road_id4[0] = FlipRoadLeftRight(road_id4[2]);
121  road_id4[1] = FlipRoadLeftRight(road_id);
122  }
123 
124  for (int ir = 0; ir < 4; ir++) {
125  //RoadList* roads = list_roads[ir];
126  RoadMap* map_rd = map_roads[ir];
127  RoadInfo* info = map_rd->Find(road_id4[ir]);
128  if (info && info->GetOnOff()) {
129  info->SetOnOff(false);
130  w_dis += info->GetFoM();
131  }
132  }
133 
134  if (w_dis / w_tot >= frac_cut) break;
135  //if (num_roads[ir_min] == 0) {
136  // cout << "No road remains for ir = " << ir_min << ". Abort." << endl;
137  // exit(1);
138  //}
139  }
140 
142 }
143 
144 void GenRoadset::DisableRoadsByWeightFraction(RoadList* road_list, const double frac)
145 {
146  road_list->SortBySignal();
147 
148  m_ofs << "RoadList: " << road_list->GetPosNegStr() << " " << road_list->GetTopBotStr() << "\n"
149  << " First Five\n";
150  UtilRoad::PrintList(road_list, +1, +5, m_ofs);
151  m_ofs << " Last Five\n";
152  UtilRoad::PrintList(road_list, -5, -1, m_ofs);
153 
154  int n_ent = road_list->Size();
155  double w_tot = 0;
156  for (int ii = 0; ii < n_ent; ii++) w_tot += road_list->Get(ii)->GetWeight();
157  double w_dis = 0;
158  int i_ent = n_ent - 1;
159  while (i_ent >= 0) {
160  RoadInfo* info = road_list->Get(i_ent);
161  info->SetOnOff(false);
162  w_dis += info->GetWeight();
163  if (w_dis / w_tot >= frac) break;
164  i_ent--;
165  }
166  int n_dis = n_ent - i_ent;
167  m_ofs << " Total : weight = " << w_tot << ", N = " << n_ent << "\n"
168  << " Disabled: weight = " << w_dis << ", N = " << n_dis << "\n"
169  << " " << w_dis/w_tot << ", " << 1.0*n_dis/n_ent << endl;
170 }
171 
172 void GenRoadset::DisableRoadsByFoM(RoadList* road_list, const double frac)
173 {
174  road_list->SortByFoM();
175 
176  m_ofs << "RoadList: " << road_list->GetPosNegStr() << " " << road_list->GetTopBotStr() << "\n"
177  << " First Five\n";
178  UtilRoad::PrintList(road_list, +1, +5, m_ofs);
179  m_ofs << " Last Five\n";
180  UtilRoad::PrintList(road_list, -5, -1, m_ofs);
181 
182  int n_ent = road_list->Size();
183  double w_tot = 0;
184  for (int ii = 0; ii < n_ent; ii++) w_tot += road_list->Get(ii)->GetFoM();
185  double w_dis = 0;
186  int i_ent = n_ent - 1;
187  while (i_ent >= 0) {
188  RoadInfo* info = road_list->Get(i_ent);
189  info->SetOnOff(false);
190  w_dis += info->GetFoM();
191  if (w_dis / w_tot >= frac) break;
192  i_ent--;
193  }
194  int n_dis = n_ent - i_ent;
195  m_ofs << " Total : weight = " << w_tot << ", N = " << n_ent << "\n"
196  << " Disabled: weight = " << w_dis << ", N = " << n_dis << "\n"
197  << " " << w_dis/w_tot << ", " << 1.0*n_dis/n_ent << endl;
198 }
199 
200 int GenRoadset::FlipRoadLeftRight(const int road)
201 {
202  int h1, h2, h3, h4, tb;
203  UtilTrigger::Road2Hodo(road, h1, h2, h3, h4, tb);
204  h1 = 24 - h1; // 1 <-> 23, 2 <-> 22,,,
205  h2 = 17 - h2; // 1 <-> 16, 2 <-> 15,,,
206  h3 = 17 - h3;
207  h4 = 17 - h4;
208  return UtilTrigger::Hodo2Road(h1, h2, h3, h4, tb);
209 }
210 
211 int GenRoadset::FlipRoadTopBottom(const int road)
212 {
213  int h1, h2, h3, h4, tb;
214  UtilTrigger::Road2Hodo(road, h1, h2, h3, h4, tb);
215  return UtilTrigger::Hodo2Road(h1, h2, h3, h4, -tb);
216 }
217 
219 {
220  map<int, int> road_count; // [road ID as pos_top] = count
221  for (int ii = 0; ii < m_list_pos_top.Size(); ii++) {
222  RoadInfo* info = m_list_pos_top.Get(ii);
223  int road_id = info->GetRoadID();
224  road_count[road_id]++;
225  }
226  for (int ii = 0; ii < m_list_pos_bot.Size(); ii++) {
227  RoadInfo* info = m_list_pos_bot.Get(ii);
228  int road_id = FlipRoadTopBottom(info->GetRoadID());
229  road_count[road_id]++;
230  }
231  for (int ii = 0; ii < m_list_neg_top.Size(); ii++) {
232  RoadInfo* info = m_list_neg_top.Get(ii);
233  int road_id = FlipRoadLeftRight(info->GetRoadID());
234  road_count[road_id]++;
235  }
236  for (int ii = 0; ii < m_list_neg_bot.Size(); ii++) {
237  RoadInfo* info = m_list_neg_bot.Get(ii);
238  int road_id = FlipRoadTopBottom( FlipRoadLeftRight(info->GetRoadID()) );
239  road_count[road_id]++;
240  }
241 
243  for (int ii = 0; ii < m_list_pos_top.Size(); ii++) {
244  RoadInfo* info = m_list_pos_top.Get(ii);
245  int road_id = info->GetRoadID();
246  if (road_count[road_id] != 4) info->SetOnOff(false);
247  }
248  for (int ii = 0; ii < m_list_pos_bot.Size(); ii++) {
249  RoadInfo* info = m_list_pos_bot.Get(ii);
250  int road_id = FlipRoadTopBottom(info->GetRoadID());
251  if (road_count[road_id] != 4) info->SetOnOff(false);
252  }
253  for (int ii = 0; ii < m_list_neg_top.Size(); ii++) {
254  RoadInfo* info = m_list_neg_top.Get(ii);
255  int road_id = FlipRoadLeftRight(info->GetRoadID());
256  if (road_count[road_id] != 4) info->SetOnOff(false);
257  }
258  for (int ii = 0; ii < m_list_neg_bot.Size(); ii++) {
259  RoadInfo* info = m_list_neg_bot.Get(ii);
260  int road_id = FlipRoadTopBottom( FlipRoadLeftRight(info->GetRoadID()) );
261  if (road_count[road_id] != 4) info->SetOnOff(false);
262  }
263 }
Definition: AnaBase.h:6
std::ofstream m_ofs
Definition: AnaBase.h:12
RoadMap * GetRoadMapPosTop()
Definition: AnaSignal.h:31
RoadMap * GetRoadMapNegBot()
Definition: AnaSignal.h:34
RoadMap * GetRoadMapNegTop()
Definition: AnaSignal.h:33
RoadMap * GetRoadMapPosBot()
Definition: AnaSignal.h:32
void DisableRoadsByFoM(RoadList *road_list, const double frac)
Definition: GenRoadset.cc:172
void GenerateSymmetricRoadSetByFoM(const double frac_cut, const std::string rs_id)
Definition: GenRoadset.cc:62
virtual ~GenRoadset()
Definition: GenRoadset.cc:24
void DisableRoadsByWeightFraction(RoadList *road_list, const double frac)
Definition: GenRoadset.cc:144
void GenerateRoadSetBySignal(const double frac_cut, const std::string rs_id)
Definition: GenRoadset.cc:42
RoadList m_list_neg_bot
Definition: GenRoadset.h:18
int FlipRoadTopBottom(const int road)
Definition: GenRoadset.cc:211
void SymmetrizeRoads()
Definition: GenRoadset.cc:218
RoadMap * m_map_neg_top
Definition: GenRoadset.h:12
RoadMap * m_map_neg_bot
Definition: GenRoadset.h:13
RoadMap * m_map_pos_top
Definition: GenRoadset.h:10
GenRoadset(const std::string label="gen_rs")
Definition: GenRoadset.cc:10
void GenerateRoadSetByFoM(const double frac_cut, const std::string rs_id)
Definition: GenRoadset.cc:52
RoadList m_list_neg_top
Definition: GenRoadset.h:17
RoadList m_list_pos_top
Definition: GenRoadset.h:15
RoadMap * m_map_pos_bot
Definition: GenRoadset.h:11
void SetMap(AnaSignal *ana_signal)
Definition: GenRoadset.cc:29
RoadList m_list_pos_bot
Definition: GenRoadset.h:16
int FlipRoadLeftRight(const int road)
Definition: GenRoadset.cc:200
Class to hold one road.
Definition: RoadInfo.h:8
double GetFoM() const
Definition: RoadInfo.h:42
int GetRoadID() const
Definition: RoadInfo.h:23
void SetOnOff(const bool on_off)
Definition: RoadInfo.h:39
double GetWeight() const
Definition: RoadInfo.h:29
double GetOnOff() const
Definition: RoadInfo.h:40
void SetPNTB(const int pn, const int tb)
Definition: RoadListBase.h:17
std::string GetPosNegStr() const
Definition: RoadListBase.h:22
std::string GetTopBotStr() const
Definition: RoadListBase.h:23
Class to hold an ordered set (i.e. vector) of roads.
Definition: RoadList.h:9
void SortByFoM()
Sort the list by Figure of Merit, i.e. "signal / sqrt(bg)".
Definition: RoadList.cc:44
int Size() const
Definition: RoadList.h:17
void Add(RoadInfo *info)
Definition: RoadList.cc:19
RoadInfo * Get(int i)
Definition: RoadList.h:18
void SortBySignal()
Definition: RoadList.cc:29
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
RoadInfo * Find(const int road) const
Definition: RoadMap.cc:21
void PrintList(RoadList *road_list, int i_begin=0, int i_end=0, std::ostream &os=std::cout)
Definition: UtilRoad.cc:25
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
void Road2Hodo(const int road, int &h1, int &h2, int &h3, int &h4, int &tb)
Convert a roadset ID to a set of hodo IDs.
Definition: UtilTrigger.cc:19
int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
Convert a set of hodo IDs to a roadset ID.
Definition: UtilTrigger.cc:11