Ignore:
Timestamp:
11/01/01 10:19:46 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r1014 r1023  
    2424    MCerPhotPix(Int_t pix = -1, Float_t phot=0., Float_t errphot=0.);
    2525
    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; }
    2729
    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);
    3131
    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;  }
    3335
    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;  }
    3738
    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; }
    4041
    41     void SetNumPhotons(Float_t f) { fPhot    = f; }
    42     void SetErrorPhot(Float_t f)  { fErrPhot = f; }
     42    void    Print(Option_t *opt = NULL) const;
    4343
    4444    ClassDef(MCerPhotPix, 1)  // class containing information about the Cerenkov Photons in a pixel
Note: See TracChangeset for help on using the changeset viewer.