Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondFormatsRPCObjectsChamberStripSpec_H
0002 #define CondFormatsRPCObjectsChamberStripSpec_H
0003 
0004 /** \class ChamberStripSpec
0005  * RPC strip specification for readout decoding
0006  */
0007 #include "CondFormats/Serialization/interface/Serializable.h"
0008 
0009 #include <string>
0010 
0011 struct ChamberStripSpec {
0012   int cablePinNumber;
0013   int chamberStripNumber;
0014   int cmsStripNumber;
0015 
0016   /// debug printout
0017   std::string print(int depth = 0) const;
0018 
0019   COND_SERIALIZABLE;
0020 };
0021 
0022 #endif