- Timestamp:
- 08/18/05 15:43:16 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7288 r7292 18 18 19 19 -*-*- END OF LINE -*-*- 20 2005/08/18 21 22 * RELEASE 0.9.4.1 23 24 25 20 26 2005/08/17 Thomas Bretz 21 27 -
trunk/MagicSoft/Mars/Makefile.conf.general
r7267 r7292 18 18 # export MARSLIBS="-lX11 -lXpm -L/usr/X11R6/lib" 19 19 # 20 DEFINES = -DMARSVER=\" \<cvs\>\" -D__MARS__ -DROOTVER=\"$(ROOTVER)\" $(ARCHDEF) $(MARSDEFINES)20 DEFINES = -DMARSVER=\"0.9.4.1\" -D__MARS__ -DROOTVER=\"$(ROOTVER)\" $(ARCHDEF) $(MARSDEFINES) 21 21 22 22 CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG) $(DEFINES) -
trunk/MagicSoft/Mars/NEWS
r7288 r7292 1 1 -*-*- END -*-*- 2 2 3 *** Version <cvs>3 *** Version 0.9.4.1 (2005/08/18) 4 4 5 5 - callisto: fixed some problems with the calibration in case of … … 17 17 18 18 19 *** Version 0.9. 3(2005/08/05)19 *** Version 0.9.4 (2005/08/05) 20 20 21 21 - general: Fixed the ZA binning. It didn't correctyl fit the -
trunk/MagicSoft/Mars/mcalib/MCalibCalcFromPast.cc
r7288 r7292 240 240 } 241 241 } 242 242 243 243 fNumCam = 0; 244 244 fNumEvents = 0; … … 287 287 Int_t MCalibCalcFromPast::Process() 288 288 { 289 290 289 if (fNumEvents++ < fNumEventsDump) 291 290 return kTRUE; 292 291 293 292 fNumEvents = 0; 294 293 ReInitialize(); … … 313 312 { 314 313 fNumFails++; 315 *fLog << warn << "WARNING - Finalization of charges failed the " << fNumFails << " time..." << endl;314 *fLog << warn << "WARNING - Finalization of charges failed the " << fNumFails << ". time..." << endl; 316 315 } 317 316 -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r7190 r7292 739 739 } 740 740 741 MCalibrationBlindCam *blindcam = fIntensBlind 742 ? (MCalibrationBlindCam*)fIntensBlind->GetCam() : fBlindCam; 743 MCalibrationQECam *qecam = fIntensQE 744 ? (MCalibrationQECam*) fIntensQE->GetCam() : fQECam; 745 MCalibrationChargeCam *chargecam = fIntensCam 746 ? (MCalibrationChargeCam*)fIntensCam->GetCam() : fCam; 747 MBadPixelsCam *badcam = fIntensBad 748 ? (MBadPixelsCam*) fIntensBad->GetCam() : fBadPixels; 741 MCalibrationBlindCam *blindcam = fIntensBlind ? (MCalibrationBlindCam*) fIntensBlind->GetCam() : fBlindCam; 742 MCalibrationQECam *qecam = fIntensQE ? (MCalibrationQECam*) fIntensQE->GetCam() : fQECam; 743 MCalibrationChargeCam *chargecam = fIntensCam ? (MCalibrationChargeCam*)fIntensCam->GetCam() : fCam; 744 MBadPixelsCam *badcam = fIntensBad ? (MBadPixelsCam*) fIntensBad->GetCam() : fBadPixels; 749 745 750 746 //
Note:
See TracChangeset
for help on using the changeset viewer.