| Line | |
|---|
| 1 | #ifndef MARS_MGainFluctuationPix_H
|
|---|
| 2 | #define MARS_MGainFluctuationPix_H
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MParContainer
|
|---|
| 5 | #include "MParContainer.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MGainFluctuationPix : public MParContainer
|
|---|
| 9 | {
|
|---|
| 10 | private:
|
|---|
| 11 |
|
|---|
| 12 | Int_t fPixId; // the pixel Id
|
|---|
| 13 |
|
|---|
| 14 | Float_t fGain; // The relative gain repect to nominal one
|
|---|
| 15 |
|
|---|
| 16 | public:
|
|---|
| 17 | MGainFluctuationPix(Int_t pix=-1, Float_t gain=0);
|
|---|
| 18 |
|
|---|
| 19 | Int_t GetPixId() const { return fPixId; }
|
|---|
| 20 | Float_t GetGain() const { return fGain; }
|
|---|
| 21 | void SetGain(Float_t g) { fGain = g; }
|
|---|
| 22 |
|
|---|
| 23 | void Print(Option_t *opt = NULL) const;
|
|---|
| 24 |
|
|---|
| 25 | ClassDef(MGainFluctuationPix, 1) // class containing information about the Cerenkov Photons in a pixel
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.