File indexing completed on 2024-04-06 12:02:20
0001 #ifndef CondFormats_RPCObjects_L1RPCBxOrConfig_h
0002 #define CondFormats_RPCObjects_L1RPCBxOrConfig_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #include "CondFormats/Serialization/interface/Serializable.h"
0019
0020 #include <set>
0021 #include <vector>
0022 #include <sstream>
0023
0024 #include <iostream>
0025
0026 class L1RPCBxOrConfig {
0027 public:
0028 L1RPCBxOrConfig();
0029 virtual ~L1RPCBxOrConfig();
0030
0031 int getFirstBX() const { return m_firstBX; };
0032 int getLastBX() const { return m_lastBX; };
0033
0034 void setFirstBX(int bx) { m_firstBX = bx; };
0035 void setLastBX(int bx) { m_lastBX = bx; };
0036
0037 private:
0038 int m_firstBX;
0039 int m_lastBX;
0040
0041 COND_SERIALIZABLE;
0042 };
0043
0044 #endif