00001
00002
00003 #ifndef JetToolRunner_H
00004 #define JetToolRunner_H
00005
00006
00007
00008
00009
00010
00011
00012 #include "AsgTools/ToolHandleArray.h"
00013 #include "AsgTools/AsgTool.h"
00014 #include "EventShapeInterface/IEventShapeTool.h"
00015 #include "JetInterface/IJetExecuteTool.h"
00016 #include "TStopwatch.h"
00017
00022
00023 class JetToolRunner
00024 : virtual public asg::AsgTool,
00025 virtual public IJetExecuteTool {
00026 ASG_TOOL_CLASS(JetToolRunner, IJetExecuteTool)
00027
00028 public:
00029
00030 JetToolRunner(const std::string& myname);
00031
00032
00033 StatusCode initialize();
00034
00035
00036 StatusCode finalize();
00037
00038
00039 int execute() const;
00040
00041
00042 void print() const;
00043
00044 private:
00045
00046
00047 ToolHandleArray<IEventShapeTool> m_evstools;
00048 ToolHandleArray<IJetExecuteTool> m_exetools;
00049 int m_timer;
00050
00051
00052 mutable unsigned int m_nevt;
00053 mutable TStopwatch m_clock;
00054 mutable std::vector<TStopwatch> m_evsclocks;
00055 mutable std::vector<TStopwatch> m_execlocks;
00056
00057 };
00058
00059 #endif