source: trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h@ 2946

Last change on this file since 2946 was 2856, checked in by moralejo, 21 years ago
*** empty log message ***
File size: 1.8 KB
Line 
1#ifndef MARS_MCerPhotPix_H
2#define MARS_MCerPhotPix_H
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MCerPhotPix : public MParContainer
9{
10private:
11
12 Int_t fPixId; // the pixel Id
13
14 UShort_t fRing; // NT: number of analyzed rings around the core pixels (fRing>0 means: used)
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 Bool_t fIsSaturated; // the pixel is saturated
21
22 // FIXME: arrival time t, and it's error sigma t
23
24public:
25 MCerPhotPix(Int_t pix=-1, Float_t phot=0, Float_t errphot=0);
26
27 Int_t GetPixId() const { return fPixId; }
28 Float_t GetNumPhotons() const { return fPhot; }
29 Float_t GetErrorPhot() const { return fErrPhot; }
30
31 Bool_t IsPixelUsed() const { return fRing>0; }
32 void SetPixelUnused() { fRing=0; }
33 void SetPixelUsed() { fRing=1; }
34
35 void SetRing(UShort_t r) { fRing = r; }
36 Short_t GetRing() const { return fRing;}
37
38 void SetPixelCore() { fIsCore = kTRUE; }
39 Bool_t IsPixelCore() const { return fIsCore; }
40
41 void SetNumPhotons(Float_t f) { fPhot = f; }
42 void SetErrorPhot(Float_t f) { fErrPhot = f; }
43 void Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; }
44
45 void SetPixelSaturated() { fIsSaturated = kTRUE; }
46 Bool_t IsPixelSaturated() const { return fIsSaturated; }
47
48 void AddNumPhotons(Float_t f) { fPhot += f; }
49
50 void Scale(Float_t f) { fPhot/=f; }
51
52 void Print(Option_t *opt = NULL) const;
53
54 ClassDef(MCerPhotPix, 2) // class containing information about the Cerenkov Photons in a pixel
55};
56
57#endif
58
59
Note: See TracBrowser for help on using the repository browser.