Ignore:
Timestamp:
08/11/04 13:42:50 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mimage/MHillasCalc.h

    r3526 r4578  
    2929    const MCerPhotEvt *fCerPhotEvt; //! Cerenkov Photon Event used for calculation
    3030
    31     MHillas      *fHillas;          //! output container to store result
    32     MHillasExt   *fHillasExt;       //! output container to store result
    33     MNewImagePar *fNewImgPar;       //! output container to store result
    34     MConcentration *fConc;          //! output container to store result
     31    MHillas           *fHillas;     //! output container to store result
     32    MHillasExt        *fHillasExt;  //! output container to store result
     33    MNewImagePar      *fNewImgPar;  //! output container to store result
     34    MConcentration    *fConc;       //! output container to store result
    3535
    36     TString      fHilName;          // name of the 'MHillas' container
    37     TString      fHilExtName;      // name of the 'MHillasExt' container
    38     TString      fImgParName;      // name of the 'MNewImagePar' container
    39     TString      fConcName;         // name of the 'MConcentration' container
     36    TString            fNameHillas;    // name of the 'MHillas' container
     37    TString            fNameHillasExt; // name of the 'MHillasExt' container
     38    TString            fNameNewImgPar; // name of the 'MNewImagePar' container
     39    TString            fNameConc;      // name of the 'MConcentration' container
    4040
    41     Int_t        fFlags;            // Flags defining the behaviour of MHillasCalc
     41    Int_t              fFlags;      // Flags defining the behaviour of MHillasCalc
    4242
    43     TArrayL      fErrors;           //! Error counter. Do we have to change to Double?
     43    TArrayL            fErrors;     //! Error counter. Do we have to change to Double?
    4444
    45     void PrintSkipped(int i, const char *str) const;
     45    void  PrintSkipped(int i, const char *str) const;
    4646
    4747    Int_t PreProcess(MParList *pList);
     
    6060    MHillasCalc(const char *name=NULL, const char *title=NULL);
    6161
    62     void SetNameHillas(const char *name)    { fHilName = name;    }
    63     void SetNameHillasExt(const char *name) { fHilExtName = name; }
    64     void SetNameNewImgPar(const char *name) { fImgParName = name; }
    65     void SetNameConc(const char *name) { fConcName = name; }
     62    void   SetNameHillas(const char *name)    { fNameHillas = name;    }
     63    void   SetNameHillasExt(const char *name) { fNameHillasExt = name; }
     64    void   SetNameNewImgPar(const char *name) { fNameNewImgPar = name; }
     65    void   SetNameConc(const char *name)      { fNameConc = name;      }
    6666
    67     void SetFlags(Int_t f) { fFlags  =  f; }
    68     void Enable(Int_t f)   { fFlags |=  f; }
    69     void Disable(Int_t f)  { fFlags &= ~f; }
     67    void   SetFlags(Int_t f) { fFlags  =  f; }
     68    void   Enable(Int_t f)   { fFlags |=  f; }
     69    void   Disable(Int_t f)  { fFlags &= ~f; }
    7070    Bool_t TestFlag(CalcCont_t i) const { return fFlags&i; }
    7171
Note: See TracChangeset for help on using the changeset viewer.