Changeset 8480
- Timestamp:
- 05/09/07 13:46:08 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8478 r8480 70 70 - removed the bad pixel levels for first and last bins 71 71 72 * msignal/MExtractTimeAndChargeSpline.[h,cc]: 72 * msignal/MExtractTimeAndChargeSpline.[h,cc], 73 mextralgo/MExtralgoSpline.cc: 73 74 - changed to allow setup of the extraction type and the 74 75 relative or absolute height for arrival 76 - if the height is set < 0 and extraction type is set to 77 relative integral the maximum is used instead of the leading edge. 75 78 - accordingly increased version number by one 76 79 -
trunk/MagicSoft/Mars/mextralgo/MExtralgoSpline.cc
r8308 r8480 411 411 } 412 412 413 fSignal = CalcIntegral(maxpos); 414 fSignalDev = 0; // means: is valid 415 416 if (fExtractionType==kIntegralRel && fHeightTm<0) 417 { 418 fTime = maxpos; 419 fTimeDev = 0; 420 return; 421 } 422 413 423 const Float_t h = fExtractionType==kIntegralAbs ? fHeightTm : fHeight*fHeightTm; 414 424 … … 422 432 fWidthDev = 0; 423 433 } 424 fSignal = CalcIntegral(maxpos);425 fSignalDev = 0; // means: is valid426 434 427 435 //
Note:
See TracChangeset
for help on using the changeset viewer.