CMS 3D CMS Logo

RPCLogicUnit.h
Go to the documentation of this file.
1 #ifndef INTERFACE_RPCLOGICUNIT_H
2 #define INTERFACE_RPCLOGICUNIT_H 1
3 
4 // Include files
5 
13 class RPCLogicUnit {
14 public:
17 
18  RPCLogicUnit(int, int, int);
19 
20  virtual ~RPCLogicUnit();
21 
22  int m_propA;
23  int m_propB;
24  int m_propC;
25 
26 protected:
27 private:
28 };
29 #endif // INTERFACE_RPCLOGICUNIT_H
virtual ~RPCLogicUnit()
Destructor.
Definition: RPCLogicUnit.cc:24
RPCLogicUnit()
Standard constructor.
Definition: RPCLogicUnit.h:16