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

Last change on this file since 1884 was 1715, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.5 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 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
22public:
23
24 MCerPhotPix(Int_t pix=-1, Float_t phot=0, Float_t errphot=0);
25
26 Int_t GetPixId() const { return fPixId; }
27 Float_t GetNumPhotons() const { return fPhot; }
28 Float_t GetErrorPhot() const { return fErrPhot; }
29
30 void SetPixelContent(Int_t pix, Float_t phot, Float_t errphot);
31
32 Bool_t IsPixelUsed() const { return fIsUsed; }
33 void SetPixelUnused() { fIsUsed = kFALSE; }
34 void SetPixelUsed() { fIsUsed = kTRUE; }
35
36 void SetPixelCore() { fIsCore = kTRUE; }
37 Bool_t IsPixelCore() const { return fIsCore; }
38
39 void SetNumPhotons(Float_t f) { fPhot = f; }
40 void SetErrorPhot(Float_t f) { fErrPhot = f; }
41 void Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; }
42
43 void AddNumPhotons(Float_t f) { fPhot += f; }
44
45 void Print(Option_t *opt = NULL) const;
46
47 ClassDef(MCerPhotPix, 1) // class containing information about the Cerenkov Photons in a pixel
48};
49
50#endif
51
52
Note: See TracBrowser for help on using the repository browser.