/* * PndOnlineAlgoTask.h * * Created on: Nov. 14, 2012 * Author: Sean Dobbs (s-dobbs@northwestern.edu) * * Abstract class */ #ifndef PNDONLINEALGOTASK_H_ #define PNDONLINEALGOTASK_H_ #include "FairTask.h" class PndOnlineAlgoTask : public FairTask { public: double GetLastRunTime() const { return last_run_time; } protected: double last_run_time; // accounting info ClassDef(PndOnlineAlgoTask,0); }; #endif