Changeset 8795 for trunk/MagicSoft/Mars/mextralgo
- Timestamp:
- 12/19/07 18:53:03 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/mextralgo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.cc
r8549 r8795 76 76 static MArrayF lut; 77 77 78 // If the lut is not et large enoughresize and reclaculate78 // If the lut is not yet large enough: resize and reclaculate 79 79 if (fNum>(Int_t)lut.GetSize()) 80 80 { … … 246 246 } 247 247 248 void MExtralgoSpline::Extract( Byte_t sat,Int_t maxbin, Bool_t width)248 void MExtralgoSpline::Extract(Int_t maxbin, Bool_t width) 249 249 { 250 250 fSignal = 0; -
trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.h
r8549 r8795 262 262 // Find analytical maximum in the bin i in the interval [min,max[ 263 263 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 265 267 if (!EvalDerivEq0(i, x1, x2)) 266 268 return kFALSE; … … 318 320 319 321 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); 321 323 322 324 Float_t EvalAt(const Float_t x) const;
Note:
See TracChangeset
for help on using the changeset viewer.