Class Reference for E1039 Core & Analysis Software
RoadList.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <algorithm>
4 #include "RoadInfo.h"
5 #include "RoadMap.h"
6 #include "RoadList.h"
7 using namespace std;
8 
10 {
11  ;
12 }
13 
15 {
16  m_vec.clear();
17 }
18 
20 {
21  m_vec.push_back(info);
22 }
23 
24 void RoadList::Add(const RoadMap* road_map)
25 {
26  for (RoadMap::ConstIter it = road_map->Begin(); it != road_map->End(); it++) Add(it->second);
27 }
28 
30 {
31  sort(m_vec.begin(), m_vec.end(),
32  [](RoadInfo* a, RoadInfo* b) { return a->GetWeight() > b->GetWeight(); }
33  );
34 }
35 
37 {
38  sort(m_vec.begin(), m_vec.end(),
39  [](RoadInfo* a, RoadInfo* b) { return a->GetWeightBG() > b->GetWeightBG(); }
40  );
41 }
42 
45 {
46  sort(m_vec.begin(), m_vec.end(),
47  [](RoadInfo* a, RoadInfo* b) { return a->GetFoM() > b->GetFoM(); }
48  );
49 }
Class to hold one road.
Definition: RoadInfo.h:8
void SortByBG()
Definition: RoadList.cc:36
void SortByFoM()
Sort the list by Figure of Merit, i.e. "signal / sqrt(bg)".
Definition: RoadList.cc:44
virtual ~RoadList()
Definition: RoadList.cc:14
RoadList()
Definition: RoadList.cc:9
void Add(RoadInfo *info)
Definition: RoadList.cc:19
void SortBySignal()
Definition: RoadList.cc:29
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
InfoMap::const_iterator ConstIter
Definition: RoadMap.h:14
ConstIter End() const
Definition: RoadMap.h:21
ConstIter Begin() const
Definition: RoadMap.h:20