1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CondFormats_SiPixelObjects_ElectronicIndex_H
#define CondFormats_SiPixelObjects_ElectronicIndex_H
namespace sipixelobjects {
struct ElectronicIndex {
int link;
int roc;
int dcol;
int pxid;
};
} // namespace sipixelobjects
#endif
|