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
19 
20 #include <set>
21 #include <vector>
22 #include <sstream>
23 
24 #include <iostream>
25 
26 
27 
29 {
30 
31  public:
33  virtual ~L1RPCBxOrConfig();
34 
35 
36  int getFirstBX() const {return m_firstBX;};
37  int getLastBX() const {return m_lastBX;};
38 
39  void setFirstBX(int bx) { m_firstBX = bx;};
40  void setLastBX(int bx) { m_lastBX = bx;};
41 
42 
43  private:
44 
45  int m_firstBX;
46  int m_lastBX;
47 
48 
49 
51 };
52 
53 
54 #endif
void setLastBX(int bx)
void setFirstBX(int bx)
int getFirstBX() const
#define COND_SERIALIZABLE
Definition: Serializable.h:37
virtual ~L1RPCBxOrConfig()
int getLastBX() const