Ignore:
Timestamp:
10/24/06 09:26:10 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7999 r8154  
    2121
    2222    // Input
    23     Float_t *fVal;
    24     Int_t    fNum;
     23    Float_t const *fVal;
     24    const Int_t    fNum;
    2525
    2626    Float_t *fDer1;
     
    238238
    239239        // Take a default in case no maximum is found
     240        // FIXME: Check THIS!!!
    240241        xmax=i;
    241242        ymax=fVal[i];
     
    438439
    439440public:
    440     MExtralgoSpline(Float_t *val, Int_t n, Float_t *der1, Float_t *der2)
     441    MExtralgoSpline(const Float_t *val, Int_t n, Float_t *der1, Float_t *der2)
    441442        : fExtractionType(kIntegral), fVal(val), fNum(n), fDer1(der1), fDer2(der2), fTime(0), fTimeDev(-1), fSignal(0), fSignalDev(-1)
    442443    {
Note: See TracChangeset for help on using the changeset viewer.