Ignore:
Timestamp:
04/04/04 19:06:45 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r3635 r3644  
    7373  SetHiGainSaturation  ( kFALSE );
    7474  SetExcluded          ( kFALSE );
     75  SetValid             ( kFALSE );
    7576
    7677}
     
    9394{
    9495    b ?  SETBIT(fFlags, kExcluded) : CLRBIT(fFlags, kExcluded);
     96}
     97
     98// --------------------------------------------------------------------------
     99//
     100// Set the Valid Bit from outside
     101//
     102void MCalibrationPix::SetValid(Bool_t b )
     103{
     104    b ?  SETBIT(fFlags, kValid) : CLRBIT(fFlags, kValid);
    95105}
    96106
     
    119129
    120130
     131Bool_t MCalibrationPix::IsHiGainSaturation()    const
     132{
     133   return TESTBIT(fFlags,kHiGainSaturation); 
     134}
     135
    121136Bool_t MCalibrationPix::IsExcluded()     const
    122137{
     
    124139}
    125140
    126 Bool_t MCalibrationPix::IsHiGainSaturation()    const
     141Bool_t MCalibrationPix::IsValid()     const
    127142{
    128    return TESTBIT(fFlags,kHiGainSaturation); 
     143   return TESTBIT(fFlags,kValid); 
    129144}
    130145
Note: See TracChangeset for help on using the changeset viewer.