- Timestamp:
- 02/21/03 14:09:33 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1780 r1781 1 1 2 2 -*-*- END -*-*- 3 4 2003/02/21: Wolfgang Wittek 5 6 * manalysis/MSelFinal.[h,cc] 7 - 'const' removed from pointers 8 9 * macros/AnalyseCT1.C 10 - macro for the CT1 analysis (work in progress) 11 3 12 4 13 2003/02/20: Wolfgang Wittek -
trunk/MagicSoft/Mars/manalysis/MSelFinal.cc
r1767 r1781 57 57 // Default constructor. 58 58 // 59 MSelFinal::MSelFinal( const MHillas *parhil, constMHillasSrc *parhilsrc,60 59 MSelFinal::MSelFinal(MHillas *parhil, MHillasSrc *parhilsrc, 60 const char *name, const char *title) 61 61 { 62 62 fName = name ? name : "MSelFinal"; … … 131 131 if ( h>0.5 || modalpha > alphacut ) 132 132 { 133 *fLog << "MSelFinal::Process; h, alpha = " << h << ", "134 << fHilsrc->GetAlpha() << endl;133 //*fLog << "MSelFinal::Process; h, alpha = " << h << ", " 134 // << fHilsrc->GetAlpha() << endl; 135 135 rc = 1; 136 136 } -
trunk/MagicSoft/Mars/manalysis/MSelFinal.h
r1767 r1781 24 24 { 25 25 private: 26 constMGeomCam *fCam; // Camera Geometry27 constMCerPhotEvt *fEvt; // Cerenkov Photon Event28 constMMcEvt *fMcEvt;29 constMHillas *fHil;30 constMHillasSrc *fHilsrc;31 constMHadronness *fHadronness;26 MGeomCam *fCam; // Camera Geometry 27 MCerPhotEvt *fEvt; // Cerenkov Photon Event 28 MMcEvt *fMcEvt; 29 MHillas *fHil; 30 MHillasSrc *fHilsrc; 31 MHadronness *fHadronness; 32 32 33 34 33 Double_t fMm2Deg; // conversion mm to degrees in camera 34 Int_t fErrors[2]; 35 35 36 36 public: 37 MSelFinal( const MHillas *fHil, constMHillasSrc *fHilsrc,37 MSelFinal(MHillas *fHil, MHillasSrc *fHilsrc, 38 38 const char *name=NULL, const char *title=NULL); 39 39
Note:
See TracChangeset
for help on using the changeset viewer.