FairRoot/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 {
6 public:
7  PndMvdSiHit();
8  PndMvdSiHit(UShort_t box, UShort_t channel, Int_t adc, UShort_t numFrames);
9  virtual ~PndMvdSiHit();
10 
11 public:
12  UShort_t fBox; // Box number (0..3)
13  UShort_t fChannel; // Channel of strip sensor (0..767)
14  Int_t fAdc; // raw ADC value
15  UShort_t fNumFrames; // number of frames with signal above threshold
16 
18 };
19 
UShort_t fBox
Definition: PndMvdSiHit.h:12
UShort_t fChannel
Definition: PndMvdSiHit.h:13
Int_t fAdc
Definition: PndMvdSiHit.h:14
virtual ~PndMvdSiHit()
Definition: PndMvdSiHit.cxx:22
ClassDef(PndMvdSiHit, 1)
UShort_t fNumFrames
Definition: PndMvdSiHit.h:15