Changeset 5829


Ignore:
Timestamp:
01/13/05 19:46:26 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5824 r5829  
    5555
    5656   * mpedestal/MExtractPedestal.cc
     57   * mpedestal/MPedCalcPedRun.cc
     58   * mpedestal/MPedCalcFromLoGain.cc
    5759     - fix the output of the print to the correct value for the case
    5860       that the extractor is used.
  • trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc

    r5828 r5829  
    496496void MPedCalcFromLoGain::Print(Option_t *o) const
    497497{
     498
    498499    MExtractPedestal::Print(o);
    499500
    500501    const Int_t last = fExtractor
    501       ? fExtractWinFirst + fExtractor->GetWindowSizeHiGain()
     502      ? fExtractWinFirst + fExtractor->GetWindowSizeHiGain() -1
    502503      : fExtractWinLast;
    503504
  • trunk/MagicSoft/Mars/mpedestal/MPedCalcPedRun.cc

    r5828 r5829  
    434434
    435435    const Int_t last = fExtractor
    436       ? fExtractWinFirst + fExtractor->GetWindowSizeHiGain()
     436      ? fExtractWinFirst + fExtractor->GetWindowSizeHiGain() -1
    437437      : fExtractWinLast;
    438438
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc

    r5746 r5829  
    277277
    278278  *fLog << dec;
    279   *fLog << " Taking " << fNumHiGainSamples
     279  *fLog << " Taking " << fWindowSizeHiGain
    280280        << " HiGain samples from slice " << (Int_t)fHiGainFirst
    281281        << " to " << (Int_t)(fHiGainLast+fHiLoLast) << " incl" << endl;
    282   *fLog << " Taking " << fNumLoGainSamples
     282  *fLog << " Taking " << fWindowSizeLoGain
    283283        << " LoGain samples from slice " << (Int_t)fLoGainFirst
    284284        << " to " << (Int_t)fLoGainLast << " incl" << endl;
Note: See TracChangeset for help on using the changeset viewer.