Changeset 5134


Ignore:
Timestamp:
09/25/04 12:53:23 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5133 r5134  
    3939   * mcalib/MCalibrationQEPix.cc
    4040     - 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
    4147
    4248
  • trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCalc.cc

    r5051 r5134  
    5858#include "MParList.h"
    5959
     60#include "MStatusDisplay.h"
     61
    6062#include "MGeomCam.h"
    6163#include "MGeomPix.h"
     
    199201  return kTRUE;
    200202}
     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//
     210Int_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
    201223
    202224// -----------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.