Changeset 3802 for trunk/MagicSoft
- Timestamp:
- 04/22/04 20:03:54 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc
r3801 r3802 141 141 142 142 // 143 // Create arrays 143 // Create arrays (FIXME: Check if its possible to create it only once) 144 144 // 145 145 TArrayD nphot(entries); … … 251 251 const Int_t entries = fPedPhot->GetSize(); 252 252 253 // Create arrays (FIXME: Check if its possible to create it only once) 253 254 TArrayD ped(entries); 254 255 TArrayD rms(entries); -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.h
r3490 r3802 22 22 Byte_t fNumMinNeighbors; 23 23 24 25 24 enum 26 25 { 27 26 kUseInterpolation = BIT(1), 28 27 kUseCentralPixel = BIT(2), 28 kProcessRMS = BIT(3) 29 29 }; 30 30 … … 34 34 void InterpolatePedestals() const; 35 35 36 void Interpolate() const;37 void Unmap() const;38 void StreamPrimitive(ofstream &out) const;36 //void Interpolate() const; 37 void Unmap() const; 38 void StreamPrimitive(ofstream &out) const; 39 39 40 Int_t PreProcess(MParList *pList); 41 Int_t Process(); 40 Bool_t ReInit(MParList *pList); 41 Int_t PreProcess(MParList *pList); 42 Int_t Process(); 42 43 43 44 public: … … 52 53 b ? SETBIT(fFlags, kUseCentralPixel) : CLRBIT(fFlags, kUseCentralPixel); 53 54 } 55 void SetProcessRMS(Bool_t b=kTRUE) 56 { 57 b ? SETBIT(fFlags, kProcessRMS) : CLRBIT(fFlags, kProcessRMS); 58 } 54 59 void SetNumMinNeighbors(UShort_t num) { fNumMinNeighbors=num; } 55 60
Note:
See TracChangeset
for help on using the changeset viewer.