Ignore:
Timestamp:
12/19/07 18:53:03 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mextralgo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.cc

    r8549 r8795  
    7676    static MArrayF lut;
    7777
    78     // If the lut is not et large enough resize and reclaculate
     78    // If the lut is not yet large enough: resize and reclaculate
    7979    if (fNum>(Int_t)lut.GetSize())
    8080    {
     
    246246}
    247247
    248 void MExtralgoSpline::Extract(Byte_t sat, Int_t maxbin, Bool_t width)
     248void MExtralgoSpline::Extract(Int_t maxbin, Bool_t width)
    249249{
    250250    fSignal    =  0;
  • trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.h

    r8549 r8795  
    262262        // Find analytical maximum in the bin i in the interval [min,max[
    263263
    264         Double_t x1, x2;
     264        Double_t x1=-1;  // This initialisation should not really be
     265        Double_t x2=-1;  // necessary but makes valgriund happy.
     266
    265267        if (!EvalDerivEq0(i, x1, x2))
    266268            return kFALSE;
     
    318320
    319321    Float_t ExtractNoise(/*Int_t iter*/);
    320     void Extract(Byte_t sat, Int_t maxpos, Bool_t width=kFALSE);
     322    void Extract(Int_t maxpos, Bool_t width=kFALSE);
    321323
    322324    Float_t EvalAt(const Float_t x) const;
Note: See TracChangeset for help on using the changeset viewer.