// This may look like C code, but it is really -*- C++ -*- // ArchTOIPipe (C) CEA/DAPNIA/SPP IN2P3/LAL // Eric Aubourg // Christophe Magneville // Reza Ansari // $Id: wienerdecor.h,v 1.2 2002-09-09 15:33:15 aubourg Exp $ #ifndef WIENERDECOR_H #define WIENERDECOR_H #include "toiprocessor.h" #include "flagtoidef.h" class WienerDecorrelator : public TOIProcessor { public: WienerDecorrelator(int nsamp, int lcor); virtual void init(); virtual void run(); inline void doNotLookAt(uint_8 flag=FlgToiAll) {flgNotLookAt = flag;} protected: int nsamples; int lcorr; uint_8 flgNotLookAt; }; #endif