Class Reference for E1039 Core & Analysis Software
RoadInfo.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <algorithm>
4 #include "RoadInfo.h"
5 using namespace std;
6 
7 RoadInfo::RoadInfo(const int road_id)
8  : m_road_id (road_id)
9  , m_count (0)
10  , m_weight (0)
11  , m_count_bg (0)
12  , m_weight_bg(0)
13  , m_on_off (true)
14 {
15  ;
16 }
17 
19  : m_road_id (obj.GetRoadID ())
20  , m_count (obj.GetCount ())
21  , m_weight (obj.GetWeight ())
22  , m_count_bg (obj.GetCountBG ())
23  , m_weight_bg(obj.GetWeightBG())
24  , m_on_off (obj.GetOnOff ())
25 {
26  ;
27 }
28 
29 //RoadInfo::RoadInfo(const int road_id, const int count, const double weight, const bool on_off)
30 // : m_road_id(road_id)
31 // , m_count (count )
32 // , m_weight (weight )
33 // , m_on_off (on_off )
34 //{
35 // ;
36 //}
37 
39 {
40  ;
41 }
42 
43 void RoadInfo::Add(const double weight, const int count)
44 {
45  m_count += count ;
46  m_weight += weight;
47 }
48 
49 void RoadInfo::Scale(const double val)
50 {
51  m_weight *= val;
52 }
53 
54 void RoadInfo::AddBG(const double weight, const int count)
55 {
56  m_count_bg += count ;
57  m_weight_bg += weight;
58 }
59 
60 void RoadInfo::ScaleBG(const double val)
61 {
62  m_weight_bg *= val;
63 }
64 
65 //bool RoadInfo::operator<(const RoadInfo& obj) const
66 //{
67 // return m_weight < obj.GetWeight() || m_road_id < obj.GetRoadID();
68 // //return m_count < obj.GetCount() || m_road_id < obj.GetRoadID();
69 //}
Class to hold one road.
Definition: RoadInfo.h:8
void Add(const double weight, const int count=1)
Definition: RoadInfo.cc:43
void ScaleBG(const double val)
Definition: RoadInfo.cc:60
void Scale(const double val)
Definition: RoadInfo.cc:49
void AddBG(const double weight, const int count=1)
Definition: RoadInfo.cc:54
RoadInfo(const int road_id=0)
Definition: RoadInfo.cc:7
virtual ~RoadInfo()
Definition: RoadInfo.cc:38