Changeset 4948 for trunk/MagicSoft


Ignore:
Timestamp:
09/11/04 20:05:10 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r4913 r4948  
    286286
    287287  SetCheckDeadPixels       ();
     288  SetCheckDeviatingBehavior();
    288289  SetCheckExtractionWindow ();
    289290  SetCheckHistOverflow     ();
    290   SetCheckDeviatingBehavior();
     291  SetCheckOscillations     ();
    291292
    292293  Clear();
     
    602603    case MCalibrationCam::kUV:    *fLog << "UV.";     break;
    603604    case MCalibrationCam::kCT1:   *fLog << "CT1.";    break;
     605    default: break;
    604606    }
    605607  *fLog << endl;
     
    22482250      rc = kTRUE;
    22492251    }
    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    }
    22512277 
    22522278  return rc;
Note: See TracChangeset for help on using the changeset viewer.