Changeset 3771 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 04/16/04 21:41:40 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHPedestalCam.cc
r3770 r3771 92 92 #include "MHPedestalPix.h" 93 93 94 #include "MBadPixelsCam.h" 95 #include "MBadPixelsPix.h" 96 94 97 #include "MLog.h" 95 98 #include "MLogManip.h" … … 231 234 (*fHiGainArray)[i] = new MHPedestalPix; 232 235 InitPedHists((MHPedestalPix&)(*this)[i],i,fExtractHiGainSlices); 236 237 if ((*fBadPixels)[i].IsBad()) 238 (*this)[i].SetExcluded(); 233 239 } 234 240 } … … 241 247 (*fLoGainArray)[i] = new MHPedestalPix; 242 248 InitPedHists((MHPedestalPix&)(*this)(i),i,fExtractLoGainSlices); 249 250 if ((*fBadPixels)[i].IsBad()) 251 (*this)(i).SetExcluded(); 243 252 } 244 253 }
Note:
See TracChangeset
for help on using the changeset viewer.