Changeset 2455 for trunk


Ignore:
Timestamp:
11/03/03 15:47:01 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2454 r2455  
    2828
    2929
    30  2003/10/31: Marcos Lopez
     30  2003/10/31: Marcos Lopez
    3131
    3232   * mhist/MFillH.cc:
  • trunk/MagicSoft/Mars/mimage/MHillasCalc.cc

    r2454 r2455  
    7777MHillasCalc::MHillasCalc(const char *name, const char *title)
    7878    : fHilName("MHillas"), fHilExtName("MHillasExt"),
    79     fImgParName("MNewImagePar"), fErrors(5), fFlags(0xff)
     79    fImgParName("MNewImagePar"), fFlags(0xff), fErrors(5)
    8080{
    8181    fName  = name  ? name  : "MHillasCalc";
  • trunk/MagicSoft/Mars/mimage/MHillasCalc.h

    r2440 r2455  
    1313#include "MTask.h"
    1414#endif
    15 #ifndef ROOT_TArrayC
    16 #include <TArrayC.h>
     15#ifndef ROOT_TArrayL
     16#include <TArrayL.h>
    1717#endif
    1818
     
    2525class MHillasCalc : public MTask
    2626{
    27     const MGeomCam    *fGeomCam;    // Camera Geometry used to calculate Hillas
    28     const MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
     27    const MGeomCam    *fGeomCam;    //! Camera Geometry used to calculate Hillas
     28    const MCerPhotEvt *fCerPhotEvt; //! Cerenkov Photon Event used for calculation
    2929
    30     MHillas      *fHillas;     // output container to store result
    31     MHillasExt   *fHillasExt;
    32     MNewImagePar *fNewImgPar;
     30    MHillas      *fHillas;          //! output container to store result
     31    MHillasExt   *fHillasExt;       //! output container to store result
     32    MNewImagePar *fNewImgPar;       //! output container to store result
    3333
    34     TString      fHilName;
    35     TString      fHilExtName;
    36     TString      fImgParName;
     34    TString      fHilName;          // name of the 'MHillas' container
     35    TString      fHilExtName;       // name of the 'MHillasExt' container
     36    TString      fImgParName;       // name of the 'MNewImagePar' container
    3737
    38     TArrayC      fErrors;
     38    Int_t        fFlags;            // Flags defining the behaviour of MHillasCalc
    3939
    40     Int_t        fFlags;
     40    TArrayL      fErrors;           //! Error counter. Do we have to change to Double?
     41
     42    void PrintSkipped(int i, const char *str) const;
    4143
    4244    Int_t PreProcess(MParList *pList);
Note: See TracChangeset for help on using the changeset viewer.