How to retrieve a tool

General syntax

To retrieve a tool called myTool, which uses the Interface ImyTool, do the following:

ImyTool myTool = tool<ImyTool>("myTool", this);

Most of the time you'll want to do this in the initialize() of your algorithm, i.e. you declare your tool as a member variable.

If the tool is included using the explicit syntax for namepaces a name must be specified.

IJetMaker jetMaker = tool<IJetMaker>( "LoKi::FastJetMaker","LoKi__FastJetMaker", this );

Otherwise It can't be configured in python.