Class Reference for E1039 Core & Analysis Software
RoadInfo.h
Go to the documentation of this file.
1 #ifndef _ROAD_INFO__H_
2 #define _ROAD_INFO__H_
3 #include <vector>
4 #include <cmath>
5 //#include <map>
6 
8 class RoadInfo {
9  int m_road_id;
10  int m_count;
11  double m_weight; //< signal
12  int m_count_bg;
13  double m_weight_bg;
14  bool m_on_off;
15 
16  public:
17  RoadInfo(const int road_id=0);
18  RoadInfo(const RoadInfo& obj);
19  //RoadInfo(const int road_id, const int count=0, const double weight=0, const bool on_off=true);
20  virtual ~RoadInfo();
21 
22  void SetRoadID(const int road_id) { m_road_id = road_id; }
23  int GetRoadID() const { return m_road_id; }
24 
25  void Add (const double weight, const int count=1);
26  void SetCount (const int count ) { m_count = count ; }
27  void SetWeight(const double weight) { m_weight = weight ; }
28  int GetCount () const { return m_count ; }
29  double GetWeight() const { return m_weight ; }
30  void Scale(const double val);
31 
32  void AddBG (const double weight, const int count=1);
33  void SetCountBG (const int count ) { m_count_bg = count ; }
34  void SetWeightBG(const double weight) { m_weight_bg = weight ; }
35  int GetCountBG () const { return m_count_bg ; }
36  double GetWeightBG() const { return m_weight_bg ; }
37  void ScaleBG(const double val);
38 
39  void SetOnOff (const bool on_off) { m_on_off = on_off ; }
40  double GetOnOff () const { return m_on_off ; }
41 
42  double GetFoM() const { return m_weight / sqrt(m_weight_bg); }
43 
44  //bool operator<(const RoadInfo& obj) const;
45 };
46 
47 #endif // _ROAD_INFO__H_
Class to hold one road.
Definition: RoadInfo.h:8
void Add(const double weight, const int count=1)
Definition: RoadInfo.cc:43
void SetRoadID(const int road_id)
Definition: RoadInfo.h:22
double GetWeightBG() const
Definition: RoadInfo.h:36
double GetFoM() const
Definition: RoadInfo.h:42
int GetCountBG() const
Definition: RoadInfo.h:35
void SetCount(const int count)
Definition: RoadInfo.h:26
int GetRoadID() const
Definition: RoadInfo.h:23
void ScaleBG(const double val)
Definition: RoadInfo.cc:60
void Scale(const double val)
Definition: RoadInfo.cc:49
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 SetWeightBG(const double weight)
Definition: RoadInfo.h:34
void SetWeight(const double weight)
Definition: RoadInfo.h:27
void AddBG(const double weight, const int count=1)
Definition: RoadInfo.cc:54
void SetCountBG(const int count)
Definition: RoadInfo.h:33
RoadInfo(const int road_id=0)
Definition: RoadInfo.cc:7
int GetCount() const
Definition: RoadInfo.h:28
virtual ~RoadInfo()
Definition: RoadInfo.cc:38