GlobalPixel

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11
#ifndef CondFormats_SiPixelObjects_GlobalPixel_H
#define CondFormats_SiPixelObjects_GlobalPixel_H

namespace sipixelobjects {
  /// global coordinates (row and column in DetUnit, as in PixelDigi)
  struct GlobalPixel {
    int row;
    int col;
  };
}  // namespace sipixelobjects
#endif