Class Reference for E1039 Core & Analysis Software
RoadListBase.h
Go to the documentation of this file.
1 #ifndef _ROAD_LIST_BASE__H_
2 #define _ROAD_LIST_BASE__H_
3 #include <string>
4 
6 class RoadListBase {
7  protected:
8  int m_pn; //< +1 = pos, -1 = neg, 0 = unset
9  int m_tb; //< +1 = top, -1 = bot, 0 = unset
10  bool m_frozen;
11 
12  RoadListBase();
13 
14  public:
15  virtual ~RoadListBase();
16 
17  void SetPNTB (const int pn, const int tb) { m_pn = pn; m_tb = tb; }
18  void SetPosNeg(const int pn) { m_pn = pn; }
19  void SetTopBot(const int tb) { m_tb = tb; }
20  int GetPosNeg() const { return m_pn; }
21  int GetTopBot() const { return m_tb; }
22  std::string GetPosNegStr() const { return m_pn>0 ? "Pos" : (m_pn<0 ? "Neg" : "!PN"); }
23  std::string GetTopBotStr() const { return m_tb>0 ? "Top" : (m_tb<0 ? "Bot" : "!TB"); }
24 
25  void Frozen() { m_frozen = true; }
26  bool IsFrozen() { return m_frozen; }
27 };
28 
29 #endif // _ROAD_LIST_BASE__H_
Base class to hold a set (list or map) of roads.
Definition: RoadListBase.h:6
void SetTopBot(const int tb)
Definition: RoadListBase.h:19
bool IsFrozen()
Definition: RoadListBase.h:26
int GetPosNeg() const
Definition: RoadListBase.h:20
void SetPNTB(const int pn, const int tb)
Definition: RoadListBase.h:17
int GetTopBot() const
Definition: RoadListBase.h:21
void SetPosNeg(const int pn)
Definition: RoadListBase.h:18
std::string GetPosNegStr() const
Definition: RoadListBase.h:22
virtual ~RoadListBase()
Definition: RoadListBase.cc:12
void Frozen()
Definition: RoadListBase.h:25
std::string GetTopBotStr() const
Definition: RoadListBase.h:23