Changeset 4466 for trunk/MagicSoft
- Timestamp:
- 08/04/04 14:14:34 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc
r4465 r4466 38 38 // should be set using SetNumMinNeighbors 39 39 // 40 // If you don't want to interpolate unreliable pixels but only unsuitable 41 // (broken) pixels use SetSloppyTreatment(). 42 // 43 // 40 44 // Input Containers: 41 45 // MCerPhotEvt -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.h
r4452 r4466 26 26 kUseInterpolation = 1, 27 27 kUseCentralPixel = 2, 28 kProcessRMS = 3 28 kProcessRMS = 3, 29 kSloppyTreatment = 4 29 30 }; 30 31 … … 40 41 Int_t PreProcess(MParList *pList); 41 42 Int_t Process(); 43 44 Bool_t IsPixelBad(Int_t idx) const; 42 45 43 46 public: … … 56 59 b ? SETBIT(fFlags, kProcessRMS) : CLRBIT(fFlags, kProcessRMS); 57 60 } 61 void SetSloppyTreatment(Bool_t b=kTRUE) 62 { 63 b ? SETBIT(fFlags, kSloppyTreatment) : CLRBIT(fFlags, kSloppyTreatment); 64 } 58 65 void SetNumMinNeighbors(Byte_t num) { fNumMinNeighbors=num; } 59 66
Note:
See TracChangeset
for help on using the changeset viewer.