00001 #ifndef CondFormats_RPCObjects_L1RPCBxOrConfig_h 00002 #define CondFormats_RPCObjects_L1RPCBxOrConfig_h 00003 // -*- C++ -*- 00004 // 00005 // Package: RPCObjects 00006 // Class : L1RPCBxOrConfig 00007 // 00017 // forward declarations 00018 #include <set> 00019 #include <vector> 00020 #include <sstream> 00021 00022 #include <iostream> 00023 00024 00025 00026 class L1RPCBxOrConfig 00027 { 00028 00029 public: 00030 L1RPCBxOrConfig(); 00031 virtual ~L1RPCBxOrConfig(); 00032 00033 00034 int getFirstBX() const {return m_firstBX;}; 00035 int getLastBX() const {return m_lastBX;}; 00036 00037 void setFirstBX(int bx) { m_firstBX = bx;}; 00038 void setLastBX(int bx) { m_lastBX = bx;}; 00039 00040 00041 private: 00042 00043 int m_firstBX; 00044 int m_lastBX; 00045 00046 00047 }; 00048 00049 00050 #endif