Changeset 5204 for trunk/MagicSoft/Mars/mpedestal
- Timestamp:
- 10/08/04 00:14:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mpedestal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc
r5030 r5204 268 268 void MPedCalcFromLoGain::SetWindowSize(Byte_t windowh, Byte_t windowl) 269 269 { 270 270 271 fWindowSizeHiGain = windowh & ~1; 271 272 fWindowSizeLoGain = windowl & ~1; … … 284 285 *fLog << int(fWindowSizeLoGain) << " samples " << endl; 285 286 } 286 287 288 if (fWindowSizeHiGain == 0) 289 { 290 *fLog << warn; 291 *fLog << GetDescriptor() << ": HiGain window currently set to 0, will set it to 2 samples "; 292 fWindowSizeHiGain = 2; 293 } 294 295 if (fWindowSizeLoGain == 0) 296 { 297 *fLog << warn; 298 *fLog << GetDescriptor() << ": LoGain window currently set to 0, will set it to 2 samples "; 299 fWindowSizeLoGain = 2; 300 } 301 287 302 const Byte_t availhirange = (fHiGainLast-fHiGainFirst+1) & ~1; 288 303 const Byte_t availlorange = (fLoGainLast-fLoGainFirst+1) & ~1; … … 431 446 if (fWindowSizeLoGain==0) 432 447 { 433 *fLog << err << "ERROR - HiGain windows size == 0... abort." << endl;448 *fLog << err << "ERROR - LoGain windows size == 0... abort." << endl; 434 449 return kFALSE; 435 450 } … … 564 579 565 580 if (fPedestalUpdate) 566 { 567 //fPedestals->ReCalc(*fGeom); 568 fPedestals->SetReadyToSave(); 569 } 581 fPedestals->SetReadyToSave(); 570 582 571 583 return kTRUE; … … 598 610 599 611 fPedestals->SetTotalEntries((UInt_t)(sum/npix*(fWindowSizeLoGain+fWindowSizeHiGain))); 612 fPedestals->SetReadyToSave(); 600 613 fPedestals->ReCalc(*fGeom); 601 fPedestals->SetReadyToSave();602 614 return kTRUE; 603 615 } -
trunk/MagicSoft/Mars/mpedestal/MPedCalcPedRun.cc
r4629 r5204 237 237 << int(fWindowSizeLoGain) << " samples " << endl; 238 238 239 240 if (fWindowSizeHiGain == 0) 241 { 242 *fLog << warn; 243 *fLog << GetDescriptor() << ": HiGain window currently set to 0, will set it to 2 samples "; 244 fWindowSizeHiGain = 2; 245 } 246 247 if (fWindowSizeLoGain == 0) 248 { 249 *fLog << warn; 250 *fLog << GetDescriptor() << ": LoGain window currently set to 0, will set it to 2 samples "; 251 fWindowSizeLoGain = 2; 252 } 253 239 254 const Byte_t availhirange = (fHiGainLast-fHiGainFirst+1) & ~1; 240 255 const Byte_t availlorange = (fLoGainLast-fLoGainFirst+1) & ~1;
Note:
See TracChangeset
for help on using the changeset viewer.