Changeset 3609 for trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeCam.cc
- Timestamp:
- 03/30/04 11:24:20 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeCam.cc
r3601 r3609 96 96 using namespace std; 97 97 98 const Float_t MHCalibrationChargeCam::fgNumHiGainSaturationLimit = 0.0 05;98 const Float_t MHCalibrationChargeCam::fgNumHiGainSaturationLimit = 0.01; 99 99 const Float_t MHCalibrationChargeCam::fgNumLoGainSaturationLimit = 0.005; 100 // 100 const Int_t MHCalibrationChargeCam::fgPulserFrequency = 500; 101 101 // 102 102 // … … 147 147 SetNumHiGainSaturationLimit(); 148 148 SetNumLoGainSaturationLimit(); 149 SetPulserFrequency(); 149 150 150 151 fNumInnerPixels = 0; … … 352 353 (*this)[i].Init(); 353 354 (*this)[i].ChangeHistId(i); 355 (*this)[i].SetEventFrequency(fPulserFrequency); 354 356 } 355 357 } … … 371 373 (*this)(i).Init(); 372 374 (*this)(i).ChangeHistId(i); 373 } 375 (*this)(i).SetEventFrequency(fPulserFrequency); 376 } 377 374 378 } 375 379 380 fAverageHiGainInnerPix->SetEventFrequency(fPulserFrequency); 381 fAverageLoGainInnerPix->SetEventFrequency(fPulserFrequency); 382 fAverageHiGainOuterPix->SetEventFrequency(fPulserFrequency); 383 fAverageLoGainOuterPix->SetEventFrequency(fPulserFrequency); 384 376 385 377 386 *fLog << inf << GetDescriptor() << ": " << fNumExcluded << " excluded Pixels " << endl; 378 379 387 return kTRUE; 380 388 } … … 505 513 } 506 514 507 fAverageHiGainInnerPix-> 508 fAverageLoGainInnerPix-> 509 fAverageHiGainOuterPix-> 510 fAverageLoGainOuterPix-> 515 fAverageHiGainInnerPix->FillAbsTime(sumhiinnertot/fNumInnerPixels); 516 fAverageLoGainInnerPix->FillAbsTime(sumloinnertot/fNumInnerPixels); 517 fAverageHiGainOuterPix->FillAbsTime(sumhioutertot/fNumOuterPixels); 518 fAverageLoGainOuterPix->FillAbsTime(sumlooutertot/fNumOuterPixels); 511 519 512 520 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.