| 1 | #ifndef MARS_MCerPhotPix_H
|
|---|
| 2 | #define MARS_MCerPhotPix_H
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MParContainer
|
|---|
| 5 | #include "MParContainer.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MCerPhotPix : public MParContainer
|
|---|
| 9 | {
|
|---|
| 10 | private:
|
|---|
| 11 |
|
|---|
| 12 | Int_t fPixId; // the pixel Id
|
|---|
| 13 |
|
|---|
| 14 | Bool_t fIsUsed; // the pixel is used for calculations --> kTRUE
|
|---|
| 15 | Bool_t fIsCore; // the pixel is a Core pixel --> kTRUE
|
|---|
| 16 |
|
|---|
| 17 | Float_t fPhot; // The number of Cerenkov photons
|
|---|
| 18 | Float_t fErrPhot; // the error of fPhot
|
|---|
| 19 |
|
|---|
| 20 | // FIXME: arrival time t, and it's error sigma t
|
|---|
| 21 |
|
|---|
| 22 | public:
|
|---|
| 23 |
|
|---|
| 24 | MCerPhotPix(Int_t pix = -1, Float_t phot=0., Float_t errphot=0.);
|
|---|
| 25 |
|
|---|
| 26 | void Print(Option_t *opt = NULL) const;
|
|---|
| 27 |
|
|---|
| 28 | Int_t GetPixId() const { return fPixId; }
|
|---|
| 29 | Float_t GetNumPhotons() const { return fPhot; }
|
|---|
| 30 | Float_t GetErrorPhot() const { return fErrPhot; }
|
|---|
| 31 |
|
|---|
| 32 | void SetPixelContent(Int_t pix, Float_t phot, Float_t errphot);
|
|---|
| 33 |
|
|---|
| 34 | Bool_t IsPixelUsed() const { return fIsUsed; }
|
|---|
| 35 | void SetPixelUnused() { fIsUsed = kFALSE; }
|
|---|
| 36 | void SetPixelUsed() { fIsUsed = kTRUE; }
|
|---|
| 37 |
|
|---|
| 38 | void SetCorePixel() { fIsCore = kTRUE; }
|
|---|
| 39 | Bool_t IsCorePixel() const { return fIsCore; }
|
|---|
| 40 |
|
|---|
| 41 | void SetNumPhotons(Float_t f) { fPhot = f; }
|
|---|
| 42 | void SetErrorPhot(Float_t f) { fErrPhot = f; }
|
|---|
| 43 |
|
|---|
| 44 | ClassDef(MCerPhotPix, 1) // class containing information about the Cerenkov Photons in a pixel
|
|---|
| 45 | };
|
|---|
| 46 |
|
|---|
| 47 | #endif
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|