00001
00002 #ifndef INDETTRACKSELECTIONTOOL_TOOLTESTER_H
00003 #define INDETTRACKSELECTIONTOOL_TOOLTESTER_H
00004
00005
00006 #include "AthenaBaseComps/AthAlgorithm.h"
00007 #include "GaudiKernel/ToolHandle.h"
00008
00009 namespace InDet {
00010
00011
00012 class IInDetTrackSelectionTool;
00013
00019 class ToolTester : public AthAlgorithm {
00020
00021 public:
00023 ToolTester( const std::string& name, ISvcLocator* svcLoc );
00024
00026 virtual StatusCode initialize();
00028 virtual StatusCode execute();
00029
00030 private:
00032 std::string m_sgKey;
00033
00035 ToolHandle< IInDetTrackSelectionTool > m_selTool;
00036
00037 };
00038
00039 }
00040
00041 #endif // INDETTRACKSELECTIONTOOL_TOOLTESTER_H