Ignore:
Timestamp:
08/16/06 16:11:32 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7188 r7876  
    378378// Fill the MCerPhotPed object
    379379//
    380 // This has to be done on an event by event basis because the (calibrated) pedestal
    381 // fluctuations depend on whether, for each pixel, we are using the high gain or the
    382 // low gain branch.
     380// This has to be done on an event by event basis because the (calibrated)
     381// pedestal fluctuations depend on whether, for each pixel, we are using
     382// the high gain or the low gain branch.
    383383//
    384384Int_t MMcCalibrationUpdate::Process()
     
    390390        MExtractedSignalPix &sigpix = (*fSignalCam)[i];
    391391
     392        const Bool_t uselo = sigpix.IsHiGainSaturated();
     393
    392394        //
    393395        // ped mean and rms per pixel, in ADC counts, according to signal
    394396        // calculation (hi or low gain and number of integrated slices):
    395         //
    396         const Float_t pedestmean = sigpix.IsLoGainUsed()?
     397        //
     398        const Float_t pedestmean = uselo ?
    397399          fSignalCam->GetNumUsedLoGainFADCSlices()*fHeaderFadc->GetPedestal(i) :
    398400          fSignalCam->GetNumUsedHiGainFADCSlices()*fHeaderFadc->GetPedestal(i);
     
    405407        // counts for the RMS per slice:
    406408        //
    407         const Double_t used = (Double_t)(sigpix.IsLoGainUsed() ?
    408                                          fSignalCam->GetNumUsedLoGainFADCSlices() :
    409                                          fSignalCam->GetNumUsedHiGainFADCSlices());
    410 
    411         const Float_t rms0 = sigpix.IsLoGainUsed() ?
     409        const Double_t used = uselo ?
     410            fSignalCam->GetNumUsedLoGainFADCSlices() :
     411            fSignalCam->GetNumUsedHiGainFADCSlices();
     412
     413        const Float_t rms0 = uselo ?
    412414            fHeaderFadc->GetPedestalRmsLow(i) :
    413415            fHeaderFadc->GetPedestalRmsHigh(i);
     
    419421        // in number of photons:
    420422        //
    421         MPedPhotPix &pedpix = (*fPedPhotCam)[i];
    422 
    423         MCalibrationChargePix &calpix = (MCalibrationChargePix&)(*fCalCam)[i];
    424         MCalibrationQEPix &qepix = (MCalibrationQEPix&)(*fQECam)[i];
    425 
    426         Float_t qe       = qepix.GetAverageQE();
    427 
    428 
    429         Float_t conv = (fSignalType == MCalibrateData::kPhot?
    430           calpix.GetMeanConvFADC2Phe() / qe  :
    431           calpix.GetMeanConvFADC2Phe());
    432 
    433         Float_t hi2lo    = calpix.GetConversionHiLo();
    434 
    435         if (sigpix.IsLoGainUsed())
    436             pedpix.Set(conv*hi2lo*pedestmean, conv*hi2lo*pedestrms);
    437         else
    438             pedpix.Set(conv*pedestmean, conv*pedestrms);
     423        const MCalibrationChargePix &calpix = (MCalibrationChargePix&)(*fCalCam)[i];
     424        const MCalibrationQEPix     &qepix  = (MCalibrationQEPix&)(*fQECam)[i];
     425
     426        const Float_t conv = fSignalType == MCalibrateData::kPhot ?
     427            calpix.GetMeanConvFADC2Phe() / qepix.GetAverageQE() :
     428            calpix.GetMeanConvFADC2Phe();
     429
     430        const Float_t hi2lo = uselo ? calpix.GetConversionHiLo() : 1;
     431
     432        (*fPedPhotCam)[i].Set(conv*hi2lo*pedestmean, conv*hi2lo*pedestrms);
    439433
    440434    }
Note: See TracChangeset for help on using the changeset viewer.