Changeset 5547


Ignore:
Timestamp:
12/02/04 14:11:34 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5544 r5547  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     23 2004/12/01: Markus Gaug and Thomas Schweizer
     24 
     25   * mpedestal/MPedCalcFromLoGain.cc
     26     - introduce a check which does not allow the last slice of the
     27       check window to be smaller than the last slice of the
     28       extraction window.
     29
     30
    2331 2004/12/01: Markus Gaug
    2432
    25    * MExtractTimeAndChargeSpline.[h,cc]:
     33   * msignal/MExtractTimeAndChargeSpline.[h,cc]:
    2634     - introduced a random iterator for the "pedestal" calculation of
    2735       the amplitude spline.
    2836
    2937
    30    * MExtractTimeAndChargeDigitalFilter.cc:
     38   * msignal/MExtractTimeAndChargeDigitalFilter.cc:
    3139     - fixed bug in the loop over the weights which can cause a call to
    3240       an array index out of range. Since MArrays are used, this call
     
    3846 2004/11/30: Thomas Bretz
    3947 
    40    * MExtractTimeAndChargeDigitalFilter.cc:
     48   * msignal/MExtractTimeAndChargeDigitalFilter.cc:
    4149     - InitArrays: added missing return statement
    4250
  • trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc

    r5507 r5547  
    267267   if (fCheckWinLast > lastavailable) //changed to override check
    268268     {
    269        *fLog << warn << GetDescriptor();
    270        *fLog << " - WARNING: Last Check Window slice out of range...adjusting to last available slice ";
    271        *fLog << lastavailable << endl;
     269       *fLog << warn << GetDescriptor()
     270             << " - WARNING: Last Check Window slice out of range...adjusting to last available slice "
     271             << lastavailable << endl;
    272272       
    273273       fCheckWinLast = lastavailable;
     274     }
     275
     276   if (fCheckWinLast < fExtractWinLast)
     277     {
     278       *fLog << warn << GetDescriptor()
     279             << " - WARNING: Last Check Window slice lower than extraction window "
     280             << " - push it up to last number of low-gain samples: ";
     281       fCheckWinLast = fExtractWinLast;
     282       *fLog << fCheckWinLast << endl;
    274283     }
    275284
Note: See TracChangeset for help on using the changeset viewer.