Changeset 3065 for trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
- Timestamp:
- 02/09/04 10:36:04 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
r3061 r3065 107 107 CLRBIT(fFlags, kExcluded); 108 108 CLRBIT(fFlags, kExcludeQualityCheck); 109 CLRBIT(fFlags, kCharge FitValid);109 CLRBIT(fFlags, kChargeValid); 110 110 CLRBIT(fFlags, kFitted); 111 111 CLRBIT(fFlags, kOscillating); … … 258 258 // Set the Excluded Bit from outside 259 259 // 260 void MCalibrationPix::SetCharge FitValid(Bool_t b )261 { 262 b ? SETBIT(fFlags, kCharge FitValid) : CLRBIT(fFlags, kChargeFitValid);260 void MCalibrationPix::SetChargeValid(Bool_t b ) 261 { 262 b ? SETBIT(fFlags, kChargeValid) : CLRBIT(fFlags, kChargeValid); 263 263 } 264 264 … … 443 443 } 444 444 445 Bool_t MCalibrationPix::IsCharge FitValid() const446 { 447 return TESTBIT(fFlags, kCharge FitValid);445 Bool_t MCalibrationPix::IsChargeValid() const 446 { 447 return TESTBIT(fFlags, kChargeValid); 448 448 } 449 449 … … 584 584 ApplyLoGainConversion(); 585 585 586 if (CheckCharge FitValidity())587 SETBIT(fFlags,kCharge FitValid);586 if (CheckChargeValidity()) 587 SETBIT(fFlags,kChargeValid); 588 588 else 589 589 { 590 CLRBIT(fFlags,kCharge FitValid);590 CLRBIT(fFlags,kChargeValid); 591 591 return kFALSE; 592 592 } … … 751 751 // 5) Pixel has a charge sigma bigger than its Pedestal RMS 752 752 // 753 Bool_t MCalibrationPix::CheckCharge FitValidity()753 Bool_t MCalibrationPix::CheckChargeValidity() 754 754 { 755 755
Note:
See TracChangeset
for help on using the changeset viewer.