Changeset 2142 for trunk/MagicSoft/Mars
- Timestamp:
- 05/27/03 16:02:28 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2141 r2142 1 1 -*-*- END OF LINE -*-*- 2 3 2 2003/05/26: Wolfgang Wittek 4 3 … … 7 6 continue; 8 7 9 * Manalysis/MPadSchweizer.cc8 * manalysis/MPadSchweizer.cc 10 9 - add pixels to MCerPhotEvt which are not yet in; 11 10 set their number of photons equal to zero … … 13 12 14 13 15 2003/05/2 3: Abelardo Moralejo14 2003/05/27: Thomas Bretz 16 15 17 16 * mreflector/Makefile: 18 added (was missing) 17 - removed obsolete includes 18 19 * mbase/MLogManip.h: 20 - for the moment removed dbg<< from dbginf again 21 22 * mimage/MHNewImagePar.cc: 23 - security check in fill 24 25 * mmain/MAnalysis.cc: 26 - fixed filling of MHNewImagePar 27 28 19 29 20 30 2003/05/26: Thomas Bretz … … 25 35 * manalysis/MMcPedestalNSBAdd.cc: 26 36 - fixed a typo (* instead of /) 37 38 39 40 2003/05/23: Abelardo Moralejo 41 42 * mreflector/Makefile: 43 - added (was missing) 27 44 28 45 -
trunk/MagicSoft/Mars/mbase/MLogManip.h
r2120 r2142 56 56 // 57 57 #ifndef __CINT__ 58 #define dbginf dbg << __FILE__ << " l." << dec << __LINE__ << ": " 58 //#define dbginf dbg << __FILE__ << " l." << dec << __LINE__ << ": " 59 #define dbginf __FILE__ << " l." << dec << __LINE__ << ": " 59 60 #define all debug(0) // use this for output in any case 60 61 #define err debug(1) // use this for fatal errors (red) -
trunk/MagicSoft/Mars/mimage/MHNewImagePar.cc
r2049 r2142 144 144 Bool_t MHNewImagePar::Fill(const MParContainer *par, const Stat_t w) 145 145 { 146 if (!par) 147 { 148 *fLog << err << "MHNewImagePar::Fill: Pointer (!=NULL) expected." << endl; 149 return kFALSE; 150 } 151 146 152 const MNewImagePar &h = *(MNewImagePar*)par; 147 153 -
trunk/MagicSoft/Mars/mmain/MAnalysis.cc
r2026 r2142 203 203 */ 204 204 205 MFillH hfill("MHHillas", "MHillas");206 MFillH hfill2("MHHillasExt", "MHillasSrc");207 MFillH hfill2s("MHHillasSrc", "MHillasSrc");208 MFillH hfill3("MHNewImagePar" );209 MFillH sfill("MHStarMap", "MHillas");205 MFillH hfill("MHHillas", "MHillas"); 206 MFillH hfill2("MHHillasExt", "MHillasSrc"); 207 MFillH hfill2s("MHHillasSrc", "MHillasSrc"); 208 MFillH hfill3("MHNewImagePar", "MNewImagePar"); 209 MFillH sfill("MHStarMap", "MHillas"); 210 210 /* 211 211 MFillH hfill2s("HistSource [MHHillasSrc]", "HillasSource"); -
trunk/MagicSoft/Mars/mreflector/Makefile
r2137 r2142 22 22 # connect the include files defined in the config.mk file 23 23 # 24 INCLUDES = -I. -I../mbase -I../mgeom -I../manalysis -I../mimage -I../mhist24 INCLUDES = -I. -I../mbase 25 25 26 26 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.