CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1RPCBxOrConfig.h
Go to the documentation of this file.
1 #ifndef CondFormats_RPCObjects_L1RPCBxOrConfig_h
2 #define CondFormats_RPCObjects_L1RPCBxOrConfig_h
3 // -*- C++ -*-
4 //
5 // Package: RPCObjects
6 // Class : L1RPCBxOrConfig
7 //
17 // forward declarations
18 #include <set>
19 #include <vector>
20 #include <sstream>
21 
22 #include <iostream>
23 
24 
25 
27 {
28 
29  public:
31  virtual ~L1RPCBxOrConfig();
32 
33 
34  int getFirstBX() const {return m_firstBX;};
35  int getLastBX() const {return m_lastBX;};
36 
37  void setFirstBX(int bx) { m_firstBX = bx;};
38  void setLastBX(int bx) { m_lastBX = bx;};
39 
40 
41  private:
42 
43  int m_firstBX;
44  int m_lastBX;
45 
46 
47 };
48 
49 
50 #endif
void setLastBX(int bx)
void setFirstBX(int bx)
int getFirstBX() const
virtual ~L1RPCBxOrConfig()
int getLastBX() const