Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:20

0001 #ifndef CondFormats_RPCObjects_L1RPCBxOrConfig_h
0002 #define CondFormats_RPCObjects_L1RPCBxOrConfig_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     RPCObjects
0006 // Class  :     L1RPCBxOrConfig
0007 //
0008 /**\class L1RPCBxOrConfig L1RPCBxOrConfig.h CondFormats/L1TObjects/interface/L1RPCBxOrConfig.h
0009 
0010  Description: Contains configuration of multiple BX triggering for L1RPC emulator
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 
0017 // forward declarations
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