Ignore:
Timestamp:
04/16/04 21:41:40 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MHPedestalCam.cc

    r3770 r3771  
    9292#include "MHPedestalPix.h"
    9393
     94#include "MBadPixelsCam.h"
     95#include "MBadPixelsPix.h"
     96
    9497#include "MLog.h"
    9598#include "MLogManip.h"
     
    231234          (*fHiGainArray)[i] = new MHPedestalPix;
    232235          InitPedHists((MHPedestalPix&)(*this)[i],i,fExtractHiGainSlices);
     236         
     237          if ((*fBadPixels)[i].IsBad())
     238            (*this)[i].SetExcluded();
    233239      }
    234240  }
     
    241247          (*fLoGainArray)[i] = new MHPedestalPix;
    242248          InitPedHists((MHPedestalPix&)(*this)(i),i,fExtractLoGainSlices);
     249
     250          if ((*fBadPixels)[i].IsBad())
     251            (*this)(i).SetExcluded();
    243252      }
    244253  }
Note: See TracChangeset for help on using the changeset viewer.