Changeset 4948 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 09/11/04 20:05:10 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r4913 r4948 286 286 287 287 SetCheckDeadPixels (); 288 SetCheckDeviatingBehavior(); 288 289 SetCheckExtractionWindow (); 289 290 SetCheckHistOverflow (); 290 SetCheck DeviatingBehavior();291 SetCheckOscillations (); 291 292 292 293 Clear(); … … 602 603 case MCalibrationCam::kUV: *fLog << "UV."; break; 603 604 case MCalibrationCam::kCT1: *fLog << "CT1."; break; 605 default: break; 604 606 } 605 607 *fLog << endl; … … 2248 2250 rc = kTRUE; 2249 2251 } 2250 // void SetPulserColor(const MCalibrationCam::PulserColor_t col) { fPulserColor = col; } 2252 if (IsEnvDefined(env, prefix, "CheckDeadPixels", print)) 2253 { 2254 SetCheckDeadPixels(GetEnvValue(env, prefix, "CheckDeadPixels", IsCheckDeadPixels())); 2255 rc = kTRUE; 2256 } 2257 if (IsEnvDefined(env, prefix, "CheckDeviatingBehavior", print)) 2258 { 2259 SetCheckDeviatingBehavior(GetEnvValue(env, prefix, "CheckDeviatingBehavior", IsCheckDeviatingBehavior())); 2260 rc = kTRUE; 2261 } 2262 if (IsEnvDefined(env, prefix, "CheckExtractionWindow", print)) 2263 { 2264 SetCheckExtractionWindow(GetEnvValue(env, prefix, "CheckExtractionWindow", IsCheckExtractionWindow())); 2265 rc = kTRUE; 2266 } 2267 if (IsEnvDefined(env, prefix, "CheckHistOverflow", print)) 2268 { 2269 SetCheckHistOverflow(GetEnvValue(env, prefix, "CheckHistOverflow", IsCheckHistOverflow())); 2270 rc = kTRUE; 2271 } 2272 if (IsEnvDefined(env, prefix, "CheckOscillations", print)) 2273 { 2274 SetCheckOscillations(GetEnvValue(env, prefix, "CheckOscillations", IsCheckOscillations())); 2275 rc = kTRUE; 2276 } 2251 2277 2252 2278 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.