Ignore:
Timestamp:
10/26/01 10:11:30 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.cc

    r959 r991  
    8282{
    8383    // TClonesArray -> 'operator new with placement' should be used
    84     new ((*fPixels)[fNumPixels++]) MCerPhotPix( id, nph, err);
     84    new ((*fPixels)[fNumPixels++]) MCerPhotPix(id, nph, err);
    8585}
    8686
     
    9191void MCerPhotEvt::Clear(Option_t *)
    9292{
    93     fNumPixels = 0 ;
    94     fPixels->Clear() ;
     93    fNumPixels = 0;
     94    fPixels->Clear();
    9595}
    9696
     
    9999//  Dump the cerenkov photon event to *fLog
    100100//
    101 void MCerPhotEvt::Print(Option_t *)
     101void MCerPhotEvt::Print(Option_t *) const
    102102{
    103103    const Int_t entries = fPixels->GetEntries();
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.h

    r959 r991  
    3131
    3232    void Clear(Option_t *opt=NULL);
    33     void Print(Option_t *opt=NULL);
     33    void Print(Option_t *opt=NULL) const;
    3434
    3535    Bool_t  IsPixelExisting(Int_t id) const;
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc

    r857 r991  
    5656//  Print information to gLog.
    5757//
    58 void MCerPhotPix::Print(Option_t *)
     58void MCerPhotPix::Print(Option_t *) const
    5959{
    6060    gLog << "MCerPhotPix: Pixel: "<< fPixId ;
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r967 r991  
    2424    MCerPhotPix(Int_t pix = -1, Float_t phot=0., Float_t errphot=0.);
    2525
    26     void Print(Option_t *opt = NULL) ;
     26    void Print(Option_t *opt = NULL) const;
    2727
    2828    Int_t   GetPixId() const      { return fPixId;   }
  • trunk/MagicSoft/Mars/manalysis/MHillas.cc

    r977 r991  
    9292// Print the hillas Parameters to *fLog
    9393//
    94 void MHillas::Print(Option_t *)
     94void MHillas::Print(Option_t *) const
    9595{
    9696    *fLog << "Hillas Parameter:" << endl;
  • trunk/MagicSoft/Mars/manalysis/MHillas.h

    r857 r991  
    3131    Bool_t Calc(const MGeomCam &geom, const MCerPhotEvt &pix);
    3232
    33     void Print(Option_t *opt=NULL);
     33    void Print(Option_t *opt=NULL) const;
    3434    void Draw(Option_t *opt=NULL);
    3535    void Paint(Option_t *opt=NULL);
Note: See TracChangeset for help on using the changeset viewer.