Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:38

0001 #ifndef RBCLOGIC_H
0002 #define RBCLOGIC_H 1
0003 
0004 // Include files
0005 #include "RBCInput.h"
0006 #include "CondFormats/RPCObjects/interface/RBCBoardSpecs.h"
0007 
0008 #include <bitset>
0009 
0010 /** @class RBCLogic RBCLogic.h
0011  *  
0012  *
0013  *  @author Andres Osorio
0014  *
0015  *  email: aosorio@uniandes.edu.co
0016  *
0017  *  @date   2008-10-11
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  // RBCLOGIC_H