Changeset 5717
- Timestamp:
- 01/07/05 13:06:28 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5713 r5717 20 20 21 21 -*-*- END OF LINE -*-*- 22 23 2005/01/07 Thomas Bretz 24 25 * mbadpixels/MBadPixelsCalc.[h,cc], macros/ONOFFAnalaysis.C: 26 - replaced PedPhotContainer by PedPhotCam for consistency 27 28 * mbase/MLog.[h,cc]: 29 - return *this in Seperator() 30 31 * mbase/MPrint.[h,cc]: 32 - use new separator manipulator in PreProcess 33 - fixed a type: separator instead of seperator 34 35 * mfileio/MReadTree.[h,cc]: 36 - added a check for branch->IsAutoDelete() in Notify() 37 38 * mpedestal/MExtractPedestal.[h,cc]: 39 - added new option 'fRandomCalculation' be used to switch on-/off- 40 randomization in extractors, the default should be like before 41 - added Process() calling Calc() 42 43 * mpedestal/MPedCalcFromLoGain.[h,cc], mpedestal/MPedCalcPedRun.[h,cc]: 44 - renamed Process() to Calc() 45 46 * Makefile: 47 - removed macros/calibration.C, which seems to have been 48 unintantionally introduced. 49 50 22 51 23 52 2005/01/05 Thomas Bretz -
trunk/MagicSoft/Mars/Makefile
r5712 r5717 20 20 # 21 21 #PROGRAMS = readraw merpp mars test mona status 22 PROGRAMS = readdaq readraw merpp mars mona showlog callisto showplot star \ 23 macros/calibration 22 PROGRAMS = readdaq readraw merpp mars mona showlog callisto showplot star 24 23 SOLIB = libmars.so 25 24 CINT = M -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.cc
r5431 r5717 86 86 // 87 87 MBadPixelsCalc::MBadPixelsCalc(const char *name, const char *title) 88 : fPedestalLevel(3), fNamePedPhotC ontainer("MPedPhotCam")88 : fPedestalLevel(3), fNamePedPhotCam("MPedPhotCam") 89 89 { 90 90 fName = name ? name : gsDefName.Data(); … … 103 103 if (fPedestalLevel>0) 104 104 { 105 fPedPhotCam = (MPedPhotCam*)pList->FindObject(AddSerialNumber(fNamePedPhotC ontainer), "MPedPhotCam");105 fPedPhotCam = (MPedPhotCam*)pList->FindObject(AddSerialNumber(fNamePedPhotCam), "MPedPhotCam"); 106 106 if (!fPedPhotCam) 107 107 { 108 *fLog << err << fNamePedPhotC ontainer<< "[MPedPhotCam] not found... aborting." << endl;108 *fLog << err << fNamePedPhotCam << "[MPedPhotCam] not found... aborting." << endl; 109 109 return kFALSE; 110 110 } … … 118 118 } 119 119 120 *fLog << inf << "Name of MPedPhotCam container : " << fNamePedPhotContainer 121 << endl; 120 *fLog << inf << "Name of MPedPhotCam used: " << fNamePedPhotCam << endl; 122 121 123 122 return kTRUE; -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.h
r5431 r5717 18 18 19 19 Float_t fPedestalLevel; 20 TString fNamePedPhotC ontainer; // name of the 'MPedPhotCam' container20 TString fNamePedPhotCam; // name of the 'MPedPhotCam' container 21 21 22 22 // void CheckPedestalRMS() const; … … 31 31 32 32 void SetPedestalLevel(Float_t f) { fPedestalLevel=f; } 33 void SetNamePedPhotC ontainer(const char *name) { fNamePedPhotContainer= name; }33 void SetNamePedPhotCam(const char *name) { fNamePedPhotCam = name; } 34 34 35 35 ClassDef(MBadPixelsCalc, 1) // Task to find bad pixels (star, broken pixels, etc)
Note:
See TracChangeset
for help on using the changeset viewer.