File indexing completed on 2024-09-07 04:37:04
0001 #ifndef RBCLOGIC_H
0002 #define RBCLOGIC_H 1
0003
0004
0005 #include "RBCInput.h"
0006 #include "CondFormats/RPCObjects/interface/RBCBoardSpecs.h"
0007
0008 #include <bitset>
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 class RBCLogic {
0021 public:
0022 virtual ~RBCLogic() {}
0023
0024 virtual void process(const RBCInput&, std::bitset<2>&) = 0;
0025
0026 virtual void setBoardSpecs(const RBCBoardSpecs::RBCBoardConfig&) = 0;
0027
0028 virtual std::bitset<6>* getlayersignal(int) = 0;
0029
0030 bool m_triggersignal;
0031
0032 protected:
0033 private:
0034 };
0035 #endif