Class Reference for E1039 Core & Analysis Software
RoadList.h
Go to the documentation of this file.
1 #ifndef _ROAD_LIST__H_
2 #define _ROAD_LIST__H_
3 #include <vector>
4 #include "RoadListBase.h"
5 class RoadInfo;
6 class RoadMap;
7 
9 class RoadList : public RoadListBase {
10  typedef std::vector<RoadInfo*> InfoVec;
11  InfoVec m_vec;
12 
13  public:
14  RoadList();
15  virtual ~RoadList();
16 
17  int Size() const { return m_vec.size(); }
18  RoadInfo* Get(int i) { return m_vec.at(i); }
19  const RoadInfo* Get(int i) const { return m_vec.at(i); }
20  void Add(RoadInfo* info);
21  void Add(const RoadMap* road_map);
22 
23  void SortBySignal();
24  void SortByBG();
25  void SortByFoM();
26 };
27 
28 #endif // _ROAD_LIST__H_
Class to hold one road.
Definition: RoadInfo.h:8
Base class to hold a set (list or map) of roads.
Definition: RoadListBase.h:6
Class to hold an ordered set (i.e. vector) of roads.
Definition: RoadList.h:9
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
int Size() const
Definition: RoadList.h:17
void Add(RoadInfo *info)
Definition: RoadList.cc:19
const RoadInfo * Get(int i) const
Definition: RoadList.h: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