Ignore:
Timestamp:
01/28/04 14:43:56 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r2939 r2943  
    192192  return;
    193193}
     194
     195void MCalibrationCam::SetBlindPixelMethodValid(const Bool_t b)
     196{
     197
     198  if (b)
     199    SETBIT(fFlags, kBlindPixelMethodValid);
     200  else   
     201    CLRBIT(fFlags, kBlindPixelMethodValid);
     202 
     203}
     204
     205void MCalibrationCam::SetPINDiodeMethodValid(const Bool_t b)
     206{
     207
     208  if (b)
     209    SETBIT(fFlags, kPINDiodeMethodValid);
     210  else   
     211    CLRBIT(fFlags, kPINDiodeMethodValid);
     212 
     213 
     214}
     215
     216Bool_t  MCalibrationCam::IsBlindPixelMethodValid()   const
     217{
     218  return TESTBIT(fFlags,kBlindPixelMethodValid);
     219}
     220
     221Bool_t  MCalibrationCam::IsPINDiodeMethodValid() const
     222{
     223  return TESTBIT(fFlags,kPINDiodeMethodValid); 
     224}
     225
    194226
    195227// --------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.