Changeset 5134
- Timestamp:
- 09/25/04 12:53:23 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5133 r5134 39 39 * mcalib/MCalibrationQEPix.cc 40 40 - changed transmission probability of plexiglass from 0.96 to 0.92 41 42 * mcalib/MCalibrationChargeCalc.[h,cc] 43 * mcalib/MCalibrationRelTimeCalc.[h,cc] 44 - added a CallPostProcess() function in order to avoid setting 45 back the fPreProcessed flag which otherwise impedes the linearity 46 calibration to be performed 41 47 42 48 -
trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCalc.cc
r5051 r5134 58 58 #include "MParList.h" 59 59 60 #include "MStatusDisplay.h" 61 60 62 #include "MGeomCam.h" 61 63 #include "MGeomPix.h" … … 199 201 return kTRUE; 200 202 } 203 204 // ----------------------------------------------------------------------- 205 // 206 // Analogue to the MTask::CallPostProcess, but without the manipulation 207 // of the bit fIsPreProcessed. Needed in order to call PostProcess multiple 208 // times in the intensity calibration. 209 // 210 Int_t MCalibrationRelTimeCalc::CallPostProcess() 211 { 212 213 // if (!fIsPreprocessed) 214 // return kTRUE; 215 216 *fLog << all << fName << "... " << flush; 217 if (fDisplay) 218 fDisplay->SetStatusLine2(*this); 219 220 return PostProcess(); 221 } 222 201 223 202 224 // -----------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.