22 void SetRoadID(
const int road_id) { m_road_id = road_id; }
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 ; }
30 void Scale(
const double val);
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 ; }
39 void SetOnOff (
const bool on_off) { m_on_off = on_off ; }
42 double GetFoM()
const {
return m_weight / sqrt(m_weight_bg); }
void Add(const double weight, const int count=1)
void SetRoadID(const int road_id)
double GetWeightBG() const
void SetCount(const int count)
void ScaleBG(const double val)
void Scale(const double val)
void SetOnOff(const bool on_off)
void SetWeightBG(const double weight)
void SetWeight(const double weight)
void AddBG(const double weight, const int count=1)
void SetCountBG(const int count)
RoadInfo(const int road_id=0)