Ignore:
Timestamp:
05/10/05 12:13:12 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.cc

    r6342 r7005  
    7979
    8080MMcCalibrationUpdate::MMcCalibrationUpdate(const char *name, const char *title)
     81  :  fFillCalibrationCam(kTRUE), fOuterPixelsGainScaling(kTRUE), fAmplitude(-1.),
     82     fAmplitudeOuter(-1.), fConversionHiLo(-1.), fUserLow2HiGainFactor(-1.),
     83     fSignalType(MCalibrateData::kPhe)
    8184{
    8285    fName  = name  ? name  : "MMcCalibrationUpdate";
    8386    fTitle = title ? title : "Write MC pedestals and conversion factors into MCalibration Container";
    84 
    85 
    86     fAmplitude = -1.;
    87     fAmplitudeOuter = -1.;
    88     fConversionHiLo = -1.;
    89 
    90     fSignalType = MCalibrateData::kPhot;
    91 
    92     fFillCalibrationCam = kTRUE;
    93     fOuterPixelsGainScaling = kTRUE;
    9487}
    9588
     
    194187          {
    195188            fAmplitudeOuter = fHeaderFadc->GetAmplitudOuter();
    196             fConversionHiLo = fHeaderFadc->GetLow2HighGain();
     189
     190            fHeaderLow2HiGainFactor = fHeaderFadc->GetLow2HighGain();
     191
     192            // The high to low gain ratio is stored in MMcFadcHeader.Low2HighGain.
     193            // However, this is just the ratio of total pulse integrals. Since the
     194            // shape of the low gain pulse is different from that of the high gain,
     195            // the factor to be applied to signals extracted from low gain depends
     196            // on the type of signal extractor (for instance if we extract the pulse
     197            // height, the factor is larger than Low2HighGain, because the low gain
     198            // pulse shape is wider and hence lower than the high gain pulse. So the
     199            // user can set manually the value of the factor to be applied. If such
     200            // value has not been set by the user, then we takes as default Low2HighGain.
     201
     202            if (fUserLow2HiGainFactor < 0.)
     203              fConversionHiLo = fHeaderLow2HiGainFactor;
     204            else
     205              fConversionHiLo = fUserLow2HiGainFactor;
     206
    197207          }
    198208        else // old MC files, camera  < v0.7
     
    203213
    204214    }
    205     else   // Check that following files have all the same FADC parameters
     215    else   // Check that the following files have all the same FADC parameters as the first
    206216    {
    207217      if ( fabs(fHeaderFadc->GetAmplitud()-fAmplitude) > 1.e-6 )
     
    211221        }
    212222
    213       if (mcrunh->GetCamVersion() > 60) // old MC files, camera < v0.7
     223      if (mcrunh->GetCamVersion() > 60) // files from camera 0.7 or newer
    214224        {
    215225          if( fabs(fHeaderFadc->GetAmplitudOuter()-fAmplitudeOuter) > 1.e-6  ||
    216               fabs(fConversionHiLo-fHeaderFadc->GetLow2HighGain()) > 1.e-6 )
     226              fabs(fHeaderLow2HiGainFactor-fHeaderFadc->GetLow2HighGain()) > 1.e-6 )
    217227            {
    218228              *fLog << err << "Parameters of MMcFadcHeader are not the same for all files... aborting." << endl;
  • trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.h

    r6342 r7005  
    4242    Float_t fAmplitude;      // FADC parameters from camera simulation (see camera manual)
    4343    Float_t fAmplitudeOuter; // to be read from the MMcFadcHeader.
    44     Float_t fConversionHiLo; // Ratio of high to low gain.
     44    Float_t fConversionHiLo; // Ratio of high to low gain to be used for low gain signal calibration.
     45
     46    Float_t fHeaderLow2HiGainFactor; // Ratio of high to low gain, as read from the MMcFadcHeader
     47    Float_t fUserLow2HiGainFactor;   // Ratio of high to low gain, as set manually by the user
     48
    4549
    4650    Float_t fOuterPixelsLightCollection;
     
    5862      { fOuterPixelsGainScaling = tf; }
    5963
     64    void SetUserLow2HiGainFactor(Float_t x) { fUserLow2HiGainFactor = x; }
     65
    6066    void SetSignalType (MCalibrateData::SignalType_t x) { fSignalType = x; }
    6167    MCalibrateData::SignalType_t GetSignalType () const { return fSignalType; }
Note: See TracChangeset for help on using the changeset viewer.