Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:37:04

0001 #ifndef INTERFACE_RPCLOGICUNIT_H
0002 #define INTERFACE_RPCLOGICUNIT_H 1
0003 
0004 // Include files
0005 
0006 /** @class RPCLogicUnit RPCLogicUnit.h interface/RPCLogicUnit.h
0007  *  
0008  *  utilitary class: not fully exploited yet 
0009  *  
0010  *  @author Andres Osorio
0011  *  @date   2008-10-25
0012  */
0013 class RPCLogicUnit {
0014 public:
0015   /// Standard constructor
0016   RPCLogicUnit() {}
0017 
0018   RPCLogicUnit(int, int, int);
0019 
0020   virtual ~RPCLogicUnit();  ///< Destructor
0021 
0022   int m_propA;
0023   int m_propB;
0024   int m_propC;
0025 
0026 protected:
0027 private:
0028 };
0029 #endif  // INTERFACE_RPCLOGICUNIT_H