Changeset 4124
- Timestamp:
- 05/22/04 14:52:15 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4122 r4124 29 29 - added a debug switch with which you can print out Object 30 30 Allocation (like suggested by TBretz). 31 32 * mcalib/MCalibrationRelTimeCalc.cc 33 - replaced the relative limit for acceptance of the time resolution 34 by an absolute limit 31 35 32 36 -
trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCalc.h
r3936 r4124 32 32 private: 33 33 34 static const Float_t fgRelTimeRe lErrLimit; //! Default for fRelTimeRelErrLimit (now set to: 6.)34 static const Float_t fgRelTimeResolutionLimit; //! Default for fRelTimeResolutionLimit (now set to: 1.) 35 35 36 36 // Variables 37 Float_t fRelTimeRe lErrLimit; // Limit acceptance rel. error mean (in abs. numbers)38 Byte_t fFlags; // Bit-field for the flags37 Float_t fRelTimeResolutionLimit; // Limit acceptance rel. time resolution (in FADC slices) 38 Byte_t fFlags; // Bit-field for the flags 39 39 40 40 // Pointers … … 65 65 void Clear(const Option_t *o=""); 66 66 67 void SetRelTimeRe lErrLimit ( const Float_t f=fgRelTimeRelErrLimit ) { fRelTimeRelErrLimit = f; }67 void SetRelTimeResolutionLimit ( const Float_t f=fgRelTimeResolutionLimit ) { fRelTimeResolutionLimit = f; } 68 68 69 69 void SkipHiLoGainCalibration ( const Bool_t b=kTRUE )
Note:
See TracChangeset
for help on using the changeset viewer.