#ifndef MARS_MContinue #define MARS_MContinue ///////////////////////////////////////////////////////////////////////////// // // // MContinue // // // // Does nothing than return kCONTINUE in the Process-fucntion // // (use with filters) // // // ///////////////////////////////////////////////////////////////////////////// #ifndef MARS_MTask #include "MTask.h" #endif class MFilter; class MContinue : public MTask { private: Bool_t Process() { return kCONTINUE; } public: MContinue(const char *name=NULL, const char *title=NULL); MContinue(MFilter *f, const char *name=NULL, const char *title=NULL); ClassDef(MContinue, 1) //Task returning kCONTINUE }; #endif