Changeset 5414
- Timestamp:
- 11/17/04 09:36:27 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5413 r5414 26 26 - make pixels with deviating time resolution unreliable instead of 27 27 unsuitable. This should take out 1 or 2 more unsuitable pixels. 28 29 * mcalib/MCalibColorSet.cc 30 - introduce treatment of the case that one file in between the 31 sequence of calibration runs is a pedestal file (run type == 1) 32 and return kCONTINUE in the process. As this task is at the 33 beginning of the tasklist, the calibration tasks will be skipped 34 for these events. This treats now an interlaced pedestal run. 35 Next will follow an interleaved pedestal event and finally an 36 interleaved data event. 28 37 29 38 -
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
r4986 r5414 398 398 // -------------------------------------------------------------------------- 399 399 // 400 // Get the High Gain Mean Rel Variance 401 // 402 Float_t MCalibrationPix::GetHiGainMeanRelVar() const 403 { 404 if (fHiGainMeanVar < 0.) 405 return -1.; 406 if (fHiGainMean == 0.) 407 return -1.; 408 409 return fHiGainMeanVar / ( fHiGainMean * fHiGainMean); 410 } 411 412 // -------------------------------------------------------------------------- 413 // 400 414 // Get the Low Gain Sigma Error: Takes square root of fHiGainSigmaVar 401 415 // -
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h
r4986 r5414 70 70 Float_t GetHiGainMean () const { return fHiGainMean ; } 71 71 Float_t GetHiGainMeanErr () const; 72 Float_t GetHiGainMeanRelVar () const; 72 73 Float_t GetHiGainProb () const { return fHiGainProb ; } 73 74 Float_t GetHiGainSigma () const { return fHiGainSigma ; }
Note:
See TracChangeset
for help on using the changeset viewer.