Changeset 7005 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 05/10/05 12:13:12 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.cc
r6342 r7005 79 79 80 80 MMcCalibrationUpdate::MMcCalibrationUpdate(const char *name, const char *title) 81 : fFillCalibrationCam(kTRUE), fOuterPixelsGainScaling(kTRUE), fAmplitude(-1.), 82 fAmplitudeOuter(-1.), fConversionHiLo(-1.), fUserLow2HiGainFactor(-1.), 83 fSignalType(MCalibrateData::kPhe) 81 84 { 82 85 fName = name ? name : "MMcCalibrationUpdate"; 83 86 fTitle = title ? title : "Write MC pedestals and conversion factors into MCalibration Container"; 84 85 86 fAmplitude = -1.;87 fAmplitudeOuter = -1.;88 fConversionHiLo = -1.;89 90 fSignalType = MCalibrateData::kPhot;91 92 fFillCalibrationCam = kTRUE;93 fOuterPixelsGainScaling = kTRUE;94 87 } 95 88 … … 194 187 { 195 188 fAmplitudeOuter = fHeaderFadc->GetAmplitudOuter(); 196 fConversionHiLo = fHeaderFadc->GetLow2HighGain(); 189 190 fHeaderLow2HiGainFactor = fHeaderFadc->GetLow2HighGain(); 191 192 // The high to low gain ratio is stored in MMcFadcHeader.Low2HighGain. 193 // However, this is just the ratio of total pulse integrals. Since the 194 // shape of the low gain pulse is different from that of the high gain, 195 // the factor to be applied to signals extracted from low gain depends 196 // on the type of signal extractor (for instance if we extract the pulse 197 // height, the factor is larger than Low2HighGain, because the low gain 198 // pulse shape is wider and hence lower than the high gain pulse. So the 199 // user can set manually the value of the factor to be applied. If such 200 // value has not been set by the user, then we takes as default Low2HighGain. 201 202 if (fUserLow2HiGainFactor < 0.) 203 fConversionHiLo = fHeaderLow2HiGainFactor; 204 else 205 fConversionHiLo = fUserLow2HiGainFactor; 206 197 207 } 198 208 else // old MC files, camera < v0.7 … … 203 213 204 214 } 205 else // Check that following files have all the same FADC parameters215 else // Check that the following files have all the same FADC parameters as the first 206 216 { 207 217 if ( fabs(fHeaderFadc->GetAmplitud()-fAmplitude) > 1.e-6 ) … … 211 221 } 212 222 213 if (mcrunh->GetCamVersion() > 60) // old MC files, camera < v0.7223 if (mcrunh->GetCamVersion() > 60) // files from camera 0.7 or newer 214 224 { 215 225 if( fabs(fHeaderFadc->GetAmplitudOuter()-fAmplitudeOuter) > 1.e-6 || 216 fabs(f ConversionHiLo-fHeaderFadc->GetLow2HighGain())> 1.e-6 )226 fabs(fHeaderLow2HiGainFactor-fHeaderFadc->GetLow2HighGain()) > 1.e-6 ) 217 227 { 218 228 *fLog << err << "Parameters of MMcFadcHeader are not the same for all files... aborting." << endl; -
trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.h
r6342 r7005 42 42 Float_t fAmplitude; // FADC parameters from camera simulation (see camera manual) 43 43 Float_t fAmplitudeOuter; // to be read from the MMcFadcHeader. 44 Float_t fConversionHiLo; // Ratio of high to low gain. 44 Float_t fConversionHiLo; // Ratio of high to low gain to be used for low gain signal calibration. 45 46 Float_t fHeaderLow2HiGainFactor; // Ratio of high to low gain, as read from the MMcFadcHeader 47 Float_t fUserLow2HiGainFactor; // Ratio of high to low gain, as set manually by the user 48 45 49 46 50 Float_t fOuterPixelsLightCollection; … … 58 62 { fOuterPixelsGainScaling = tf; } 59 63 64 void SetUserLow2HiGainFactor(Float_t x) { fUserLow2HiGainFactor = x; } 65 60 66 void SetSignalType (MCalibrateData::SignalType_t x) { fSignalType = x; } 61 67 MCalibrateData::SignalType_t GetSignalType () const { return fSignalType; }
Note:
See TracChangeset
for help on using the changeset viewer.