Changeset 8154 for trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.h
- Timestamp:
- 10/24/06 09:26:10 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.h
r7999 r8154 21 21 22 22 // Input 23 Float_t *fVal;24 Int_t fNum;23 Float_t const *fVal; 24 const Int_t fNum; 25 25 26 26 Float_t *fDer1; … … 238 238 239 239 // Take a default in case no maximum is found 240 // FIXME: Check THIS!!! 240 241 xmax=i; 241 242 ymax=fVal[i]; … … 438 439 439 440 public: 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) 441 442 : fExtractionType(kIntegral), fVal(val), fNum(n), fDer1(der1), fDer2(der2), fTime(0), fTimeDev(-1), fSignal(0), fSignalDev(-1) 442 443 {
Note:
See TracChangeset
for help on using the changeset viewer.