Changeset 3644 for trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
- Timestamp:
- 04/04/04 19:06:45 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
r3635 r3644 73 73 SetHiGainSaturation ( kFALSE ); 74 74 SetExcluded ( kFALSE ); 75 SetValid ( kFALSE ); 75 76 76 77 } … … 93 94 { 94 95 b ? SETBIT(fFlags, kExcluded) : CLRBIT(fFlags, kExcluded); 96 } 97 98 // -------------------------------------------------------------------------- 99 // 100 // Set the Valid Bit from outside 101 // 102 void MCalibrationPix::SetValid(Bool_t b ) 103 { 104 b ? SETBIT(fFlags, kValid) : CLRBIT(fFlags, kValid); 95 105 } 96 106 … … 119 129 120 130 131 Bool_t MCalibrationPix::IsHiGainSaturation() const 132 { 133 return TESTBIT(fFlags,kHiGainSaturation); 134 } 135 121 136 Bool_t MCalibrationPix::IsExcluded() const 122 137 { … … 124 139 } 125 140 126 Bool_t MCalibrationPix::Is HiGainSaturation()const141 Bool_t MCalibrationPix::IsValid() const 127 142 { 128 return TESTBIT(fFlags,k HiGainSaturation);143 return TESTBIT(fFlags,kValid); 129 144 } 130 145
Note:
See TracChangeset
for help on using the changeset viewer.