PandaRoot
PndMvdSiHit.h
Go to the documentation of this file.
1 #include <TObject.h>
2 #include <TClonesArray.h>
3 
4 class PndMvdSiHit : public TObject {
5  public:
6  PndMvdSiHit();
7  PndMvdSiHit(UShort_t box, UShort_t channel, Int_t adc, UShort_t numFrames);
8  virtual ~PndMvdSiHit();
9 
10  public:
11  UShort_t fBox; // Box number (0..3)
12  UShort_t fChannel; // Channel of strip sensor (0..767)
13  Int_t fAdc; // raw ADC value
14  UShort_t fNumFrames; // number of frames with signal above threshold
15 
17 };
UShort_t fBox
Definition: PndMvdSiHit.h:11
UShort_t fChannel
Definition: PndMvdSiHit.h:12
Int_t fAdc
Definition: PndMvdSiHit.h:13
ClassDef(PndMvdSiHit, 1)
UShort_t fNumFrames
Definition: PndMvdSiHit.h:14
virtual ~PndMvdSiHit()