1
2
3
4
5
6
7
8
9
10
11
12
|
#include <cstdint>
#ifndef CondFormats_SiPixelObjects_DetectorIndex_H
#define CondFormats_SiPixelObjects_DetectorIndex_H
namespace sipixelobjects {
struct DetectorIndex {
uint32_t rawId;
int row;
int col;
};
} // namespace sipixelobjects
#endif
|