SRDigit.h
Go to the documentation of this file.
1 #ifndef CAFSRDIGIT_H
2 #define CAFSRDIGIT_H
3 
4 #include <cstddef>
5 
6 namespace caf
7 {
8  class SRDigit
9  {
10  public:
11  SRDigit();
12 
13  float x, y, z;
14  float t;
15  unsigned int adc;
16  size_t cellid;
17  };
18 }
19 
20 #endif
float y
Definition: SRDigit.h:13
float t
Definition: SRDigit.h:14
float z
Definition: SRDigit.h:13
size_t cellid
Definition: SRDigit.h:16
Common Analysis Files.
Definition: SRGAr.h:13
unsigned int adc
Definition: SRDigit.h:15
float x
Definition: SRDigit.h:13