// toiflagger.h // Eric Aubourg CEA/DAPNIA/SPP octobre 1999 #ifndef TOIFLAGGER_H #define TOIFLAGGER_H #include "toipullproducer.h" class TOIFlagger : public TOIPullProducer { public: TOIFlagger(); virtual string getName(); virtual double getValue(long sampleNum, TOI const& toi); virtual bool canGetValue(long sampleNum, TOI const& toi); virtual bool canGetValueLater(long sampleNum, TOI const& toi); virtual bool canProduce(TOI const&); protected: virtual set reqTOIFor(TOI const&); }; #endif