Changeset 3344 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 02/27/04 20:07:20 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.cc
r3265 r3344 81 81 82 82 fFillCalibrationCam = kTRUE; 83 83 fOuterPixelsGainScaling = kTRUE; 84 84 } 85 85 … … 209 209 210 210 // 211 // Set the ADC to photons conversion factor for outer pixels: 212 // 213 fADC2PhOuter = fADC2PhInner * (fAmplitude / fAmplitudeOuter); 211 // Set the ADC to photons conversion factor for outer pixels. 212 // One can choose not to apply the known (in MC) gain factor between 213 // inner and outer pixels, (fOuterPixelsGainScaling = kFALSE), 214 // which may be useful for display purposes. 215 // 216 217 if (fOuterPixelsGainScaling) 218 fADC2PhOuter = fADC2PhInner * (fAmplitude / fAmplitudeOuter); 219 else 220 fADC2PhOuter = fADC2PhInner; 221 214 222 215 223 const int num = fCalCam->GetSize();
Note:
See TracChangeset
for help on using the changeset viewer.