- Timestamp:
- 11/03/03 15:47:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2454 r2455 28 28 29 29 30 2003/10/31: Marcos Lopez30 2003/10/31: Marcos Lopez 31 31 32 32 * mhist/MFillH.cc: -
trunk/MagicSoft/Mars/mimage/MHillasCalc.cc
r2454 r2455 77 77 MHillasCalc::MHillasCalc(const char *name, const char *title) 78 78 : fHilName("MHillas"), fHilExtName("MHillasExt"), 79 fImgParName("MNewImagePar"), f Errors(5), fFlags(0xff)79 fImgParName("MNewImagePar"), fFlags(0xff), fErrors(5) 80 80 { 81 81 fName = name ? name : "MHillasCalc"; -
trunk/MagicSoft/Mars/mimage/MHillasCalc.h
r2440 r2455 13 13 #include "MTask.h" 14 14 #endif 15 #ifndef ROOT_TArray C16 #include <TArray C.h>15 #ifndef ROOT_TArrayL 16 #include <TArrayL.h> 17 17 #endif 18 18 … … 25 25 class MHillasCalc : public MTask 26 26 { 27 const MGeomCam *fGeomCam; // Camera Geometry used to calculate Hillas28 const MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation27 const MGeomCam *fGeomCam; //! Camera Geometry used to calculate Hillas 28 const MCerPhotEvt *fCerPhotEvt; //! Cerenkov Photon Event used for calculation 29 29 30 MHillas *fHillas; //output container to store result31 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 33 33 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 37 37 38 TArrayC fErrors;38 Int_t fFlags; // Flags defining the behaviour of MHillasCalc 39 39 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; 41 43 42 44 Int_t PreProcess(MParList *pList);
Note:
See TracChangeset
for help on using the changeset viewer.