Changeset 3364
- Timestamp:
- 03/01/04 10:26:20 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3360 r3364 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/03/01: Thomas Bretz 7 8 * Makefile: 9 - enhanced all calls to subsequent makes by '-f Makefile' to 10 make sure the correct Makefile is called 11 12 * merpp.cc: 13 - enhanced interpretation of time 14 - fixed a bug in determin the file-type 15 16 17 6 18 2004/02/27: Markus Gaug 7 19 8 * mjobs/MJPedestal.cc 9 * mjobs/MJCalibration.cc 10 * macros/calibration.C 11 12 - put in call to MHCamera::Projection the name of teh calling 20 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C: 21 - put in call to MHCamera::Projection the name of the calling 13 22 class, otherwise the projected hsitogram will be overwritten by 14 23 an empyt one. 15 24 16 * mcalib/MHCalibrationChargePix.[h,cc] 17 * mcalib/MHCalibrationHiGainChargePix.[h,cc] 18 * mcalib/MHCalibrationLoGainChargePix.[h,cc] 19 25 * mcalib/MHCalibrationChargePix.[h,cc], 26 mcalib/MHCalibrationHiGainChargePix.[h,cc], 27 mcalib/MHCalibrationLoGainChargePix.[h,cc]: 20 28 - histogram name setting and title setting moved to constructor, 21 29 Functions Init and ChangeHistId derive directly from 22 30 MHcalibrationChargePix 23 31 24 * mcalib/MHCalibrationChargeCam.[h,cc] 25 * mcalib/MCalibrationChargeCam.[h,cc] 26 * mcalib/MCalibrationChargeCalc.[h,cc] 27 32 * mcalib/MHCalibrationChargeCam.[h,cc], 33 mcalib/MCalibrationChargeCam.[h,cc], 34 mcalib/MCalibrationChargeCalc.[h,cc]: 28 35 - introduced "average inner" and "average outer" higain and logain 29 36 pixels. 30 37 31 38 39 32 40 2004/02/27: Raducci Sebastian 33 41 34 42 * mhist/Makefile 35 43 - added mastro in the include list 44 36 45 37 46 … … 62 71 63 72 73 64 74 2004/02/26: Hendrik Bartko 65 75 66 76 * macros/dohtml.C 67 77 - included the path msignals/ 78 68 79 69 80 -
trunk/MagicSoft/Mars/Makefile
r3330 r3364 36 36 # ----->>> mars libraries 37 37 # 38 SUBDIRS = mbase \ 38 SUBDIRS = slalib \ 39 mbase \ 39 40 mastro \ 40 41 mmain \ … … 111 112 $(LIBRARIES): 112 113 @echo " Creating lib$@:" 113 (cd $*; $(MAKE) ; cd ..; mv $*/$@ lib/lib$@)114 (cd $*; $(MAKE) -f Makefile; cd ..; mv $*/$@ lib/lib$@) 114 115 115 116 $(MRPROPERS): 116 117 @echo " Doing Mr.Proper in $(@:.mrproper=)" 117 (cd $(@:.mrproper=); ($(MAKE) mrproper > /dev/null); cd ..;)118 (cd $(@:.mrproper=); ($(MAKE) -f Makefile mrproper > /dev/null); cd ..;) 118 119 119 120 $(CLEANERS): 120 121 @echo "Cleaning $(@:.clean=):" 121 (cd $(@:.clean=); $(MAKE) clean; cd ..;)122 (cd $(@:.clean=); $(MAKE) -f Makefile clean; cd ..;) 122 123 123 124 dox: $(SOLIB) -
trunk/MagicSoft/Mars/merpp.cc
r3336 r3364 85 85 Int_t y=0, ms=0, mon=0, d=0, h=0, m=0, s=0; 86 86 87 if (7!=sscanf(str.Data(), "%d-%d-%d/%d:%d:%d.%d", &y, &mon, &d, &h, &m, &s, &ms)) 87 const Int_t n = sscanf(str.Data(), "%d-%d-%d/%d:%d:%d.%d", &y, &mon, &d, &h, &m, &s, &ms); 88 89 if (n<6 || n>7) 90 { 91 gLog << warn << "'" << str << "' no valid Time... ignored." << endl; 88 92 return MTime(); 93 } 89 94 90 95 MTime t; … … 122 127 MTime kTimeStart(AnalyseTime(arg.GetStringAndRemove("--start="))); 123 128 MTime kTimeStop(AnalyseTime(arg.GetStringAndRemove("--stop="))); 124 kTimeStart.SetName("MTimeStart");125 kTimeStop.SetName("MTimeStop");126 129 127 130 const Int_t kRunNumber = arg.HasOption("--run=") ? arg.GetIntAndRemove("--run=") : -1; … … 150 153 const Bool_t isreport = kNamein.EndsWith(".rep"); 151 154 const Bool_t isdc = kNamein.EndsWith(".txt"); 152 const Bool_t israw = !isreport && !is raw;155 const Bool_t israw = !isreport && !isdc; 153 156 154 157 if (!kNamein.EndsWith(".raw") && israw)
Note:
See TracChangeset
for help on using the changeset viewer.