CMS 3D CMS Logo

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 
27 public:
29  virtual ~L1RPCBxOrConfig();
30 
31  int getFirstBX() const { return m_firstBX; };
32  int getLastBX() const { return m_lastBX; };
33 
34  void setFirstBX(int bx) { m_firstBX = bx; };
35  void setLastBX(int bx) { m_lastBX = bx; };
36 
37 private:
38  int m_firstBX;
39  int m_lastBX;
40 
42 };
43 
44 #endif
void setLastBX(int bx)
int getLastBX() const
int getFirstBX() const
void setFirstBX(int bx)
#define COND_SERIALIZABLE
Definition: Serializable.h:39
virtual ~L1RPCBxOrConfig()