1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef CondFormatsRPCObjectsChamberStripSpec_H
#define CondFormatsRPCObjectsChamberStripSpec_H
/** \class ChamberStripSpec
* RPC strip specification for readout decoding
*/
#include "CondFormats/Serialization/interface/Serializable.h"
#include <string>
struct ChamberStripSpec {
int cablePinNumber;
int chamberStripNumber;
int cmsStripNumber;
/// debug printout
std::string print(int depth = 0) const;
COND_SERIALIZABLE;
};
#endif
|