Changeset 7876 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 08/16/06 16:11:32 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.cc
r7188 r7876 378 378 // Fill the MCerPhotPed object 379 379 // 380 // This has to be done on an event by event basis because the (calibrated) pedestal381 // fluctuations depend on whether, for each pixel, we are using the high gain or the382 // low gain branch.380 // This has to be done on an event by event basis because the (calibrated) 381 // pedestal fluctuations depend on whether, for each pixel, we are using 382 // the high gain or the low gain branch. 383 383 // 384 384 Int_t MMcCalibrationUpdate::Process() … … 390 390 MExtractedSignalPix &sigpix = (*fSignalCam)[i]; 391 391 392 const Bool_t uselo = sigpix.IsHiGainSaturated(); 393 392 394 // 393 395 // ped mean and rms per pixel, in ADC counts, according to signal 394 396 // calculation (hi or low gain and number of integrated slices): 395 396 const Float_t pedestmean = sigpix.IsLoGainUsed()?397 // 398 const Float_t pedestmean = uselo ? 397 399 fSignalCam->GetNumUsedLoGainFADCSlices()*fHeaderFadc->GetPedestal(i) : 398 400 fSignalCam->GetNumUsedHiGainFADCSlices()*fHeaderFadc->GetPedestal(i); … … 405 407 // counts for the RMS per slice: 406 408 // 407 const Double_t used = (Double_t)(sigpix.IsLoGainUsed()?408 409 fSignalCam->GetNumUsedHiGainFADCSlices());410 411 const Float_t rms0 = sigpix.IsLoGainUsed()?409 const Double_t used = uselo ? 410 fSignalCam->GetNumUsedLoGainFADCSlices() : 411 fSignalCam->GetNumUsedHiGainFADCSlices(); 412 413 const Float_t rms0 = uselo ? 412 414 fHeaderFadc->GetPedestalRmsLow(i) : 413 415 fHeaderFadc->GetPedestalRmsHigh(i); … … 419 421 // in number of photons: 420 422 // 421 MPedPhotPix &pedpix = (*fPedPhotCam)[i]; 422 423 MCalibrationChargePix &calpix = (MCalibrationChargePix&)(*fCalCam)[i]; 424 MCalibrationQEPix &qepix = (MCalibrationQEPix&)(*fQECam)[i]; 425 426 Float_t qe = qepix.GetAverageQE(); 427 428 429 Float_t conv = (fSignalType == MCalibrateData::kPhot? 430 calpix.GetMeanConvFADC2Phe() / qe : 431 calpix.GetMeanConvFADC2Phe()); 432 433 Float_t hi2lo = calpix.GetConversionHiLo(); 434 435 if (sigpix.IsLoGainUsed()) 436 pedpix.Set(conv*hi2lo*pedestmean, conv*hi2lo*pedestrms); 437 else 438 pedpix.Set(conv*pedestmean, conv*pedestrms); 423 const MCalibrationChargePix &calpix = (MCalibrationChargePix&)(*fCalCam)[i]; 424 const MCalibrationQEPix &qepix = (MCalibrationQEPix&)(*fQECam)[i]; 425 426 const Float_t conv = fSignalType == MCalibrateData::kPhot ? 427 calpix.GetMeanConvFADC2Phe() / qepix.GetAverageQE() : 428 calpix.GetMeanConvFADC2Phe(); 429 430 const Float_t hi2lo = uselo ? calpix.GetConversionHiLo() : 1; 431 432 (*fPedPhotCam)[i].Set(conv*hi2lo*pedestmean, conv*hi2lo*pedestrms); 439 433 440 434 }
Note:
See TracChangeset
for help on using the changeset viewer.