// 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: meanvarestim.h,v 1.1 2002-01-15 00:46:24 aubourg Exp $ #ifndef MEANVARESTIM_H #define MEANVARESTIM_H #include "toiprocessor.h" #include "flagtoidef.h" class MeanVarEstimator : public TOIProcessor { public: MeanVarEstimator(int nsamp); virtual void init(); virtual void run(); inline void doNotLookAt(uint_8 flag=FlgToiAll) {flgNotLookAt = flag;} protected: int nsamples; uint_8 flgNotLookAt; }; #endif