Ignore:
Timestamp:
11/11/04 13:52:49 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc

    r5381 r5387  
    325325Int_t MPedCalcFromLoGain::PreProcess(MParList *pList)
    326326{
    327 
    328327    Clear();
    329328
     
    441440
    442441  // 2. Scale the variance to the number of slices:
    443   var /= (Float_t)(fExtractWinSize);
     442  var /= fExtractWinSize;
    444443 
    445444  // 3. Calculate the RMS from the Variance:
     
    648647    *fLog << GetDescriptor() << ":" << endl;
    649648    *fLog << "Parameters used for pedestal calculation from " << fNamePedestalCam << ":"<<endl;
    650     *fLog << "CheckWindow   from slice " << fCheckWinFirst   << " to " << fCheckWinLast << endl;
    651     *fLog << "ExtractWindow from slice " << fExtractWinFirst << " to " << fExtractWinLast << endl;
     649    *fLog << "CheckWindow from slice " << fCheckWinFirst   << " to " << fCheckWinLast << " included." << endl;
     650    *fLog << "ExtractWindow from slice " << fExtractWinFirst << " to " << fExtractWinLast << " included." << endl;
    652651    *fLog << "Max allowed signal variation: " << fMaxSignalVar << endl;
    653652    *fLog << "Pedestal Update is " << (fPedestalUpdate?"on":"off") << endl;
Note: See TracChangeset for help on using the changeset viewer.