Changeset 1023 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 11/01/01 10:19:46 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
r1014 r1023 24 24 MCerPhotPix(Int_t pix = -1, Float_t phot=0., Float_t errphot=0.); 25 25 26 void Print(Option_t *opt = NULL) const; 26 Int_t GetPixId() const { return fPixId; } 27 Float_t GetNumPhotons() const { return fPhot; } 28 Float_t GetErrorPhot() const { return fErrPhot; } 27 29 28 Int_t GetPixId() const { return fPixId; } 29 Float_t GetNumPhotons() const { return fPhot; } 30 Float_t GetErrorPhot() const { return fErrPhot; } 30 void SetPixelContent(Int_t pix, Float_t phot, Float_t errphot); 31 31 32 void SetPixelContent(Int_t pix, Float_t phot, Float_t errphot); 32 Bool_t IsPixelUsed() const { return fIsUsed; } 33 void SetPixelUnused() { fIsUsed = kFALSE; } 34 void SetPixelUsed() { fIsUsed = kTRUE; } 33 35 34 Bool_t IsPixelUsed() const { return fIsUsed; } 35 void SetPixelUnused() { fIsUsed = kFALSE; } 36 void SetPixelUsed() { fIsUsed = kTRUE; } 36 void SetCorePixel() { fIsCore = kTRUE; } 37 Bool_t IsCorePixel() const { return fIsCore; } 37 38 38 void SetCorePixel() { fIsCore = kTRUE; }39 Bool_t IsCorePixel() const { return fIsCore;}39 void SetNumPhotons(Float_t f) { fPhot = f; } 40 void SetErrorPhot(Float_t f) { fErrPhot = f; } 40 41 41 void SetNumPhotons(Float_t f) { fPhot = f; } 42 void SetErrorPhot(Float_t f) { fErrPhot = f; } 42 void Print(Option_t *opt = NULL) const; 43 43 44 44 ClassDef(MCerPhotPix, 1) // class containing information about the Cerenkov Photons in a pixel
Note:
See TracChangeset
for help on using the changeset viewer.