The Gaudi Framework  v32r2 (46d42edc)
BaseToolHandle Class Referenceabstract

Non-templated base class for actual ToolHandle<T>. More...

#include <GaudiKernel/ToolHandle.h>

Inheritance diagram for BaseToolHandle:
Collaboration diagram for BaseToolHandle:

Public Member Functions

StatusCode retrieve (IAlgTool *&tool) const
 
virtual StatusCode retrieve () const =0
 
virtual StatusCode retrieve (DisableTool sd)=0
 
virtual StatusCode retrieve (EnableTool sd)=0
 
const IAlgToolget () const
 
IAlgToolget ()
 
virtual std::string typeAndName () const =0
 
bool isEnabled () const
 Helper to check if the ToolHandle should be retrieved. More...
 
void enable ()
 
void disable ()
 
bool setEnabled (const bool flag)
 
- Public Member Functions inherited from ToolHandleInfo
virtual ~ToolHandleInfo ()=default
 
bool isPublic () const noexcept
 
bool createIf () const noexcept
 
const IInterfaceparent () const noexcept
 

Protected Member Functions

 BaseToolHandle (const IInterface *parent=nullptr, bool createIf=true)
 
virtual StatusCode i_retrieve (IAlgTool *&) const =0
 
virtual const IAlgToolgetAsIAlgTool () const =0
 
virtual IAlgToolgetAsIAlgTool ()=0
 
- Protected Member Functions inherited from ToolHandleInfo
 ToolHandleInfo (const IInterface *parent=nullptr, bool createIf=true)
 

Protected Attributes

bool m_enabled = true
 
- Protected Attributes inherited from ToolHandleInfo
const IInterfacem_parent = nullptr
 
bool m_createIf {true}
 

Additional Inherited Members

- Static Public Member Functions inherited from ToolHandleInfo
static std::string toolComponentType (const IInterface *parent)
 
static std::string toolParentName (const IInterface *parent)
 

Detailed Description

Non-templated base class for actual ToolHandle<T>.

Defines the interface for the management of ToolHandles in the Algorithms and Tools

Author
Daniel Funke danie.nosp@m.l.fu.nosp@m.nke@c.nosp@m.ern..nosp@m.ch

Definition at line 69 of file ToolHandle.h.

Constructor & Destructor Documentation

◆ BaseToolHandle()

BaseToolHandle::BaseToolHandle ( const IInterface parent = nullptr,
bool  createIf = true 
)
inlineprotected

Definition at line 72 of file ToolHandle.h.

bool createIf() const noexcept
Definition: ToolHandle.h:42
const IInterface * parent() const noexcept
Definition: ToolHandle.h:44
ToolHandleInfo(const IInterface *parent=nullptr, bool createIf=true)
Definition: ToolHandle.h:34

Member Function Documentation

◆ disable()

void BaseToolHandle::disable ( )
inline

Definition at line 98 of file ToolHandle.h.

98 { m_enabled = false; }

◆ enable()

void BaseToolHandle::enable ( )
inline

Definition at line 96 of file ToolHandle.h.

96 { m_enabled = true; }

◆ get() [1/2]

const IAlgTool* BaseToolHandle::get ( ) const
inline

Definition at line 83 of file ToolHandle.h.

83 { return getAsIAlgTool(); }
virtual const IAlgTool * getAsIAlgTool() const =0

◆ get() [2/2]

IAlgTool* BaseToolHandle::get ( )
inline

Definition at line 85 of file ToolHandle.h.

85 { return getAsIAlgTool(); }
virtual const IAlgTool * getAsIAlgTool() const =0

◆ getAsIAlgTool() [1/2]

virtual const IAlgTool* BaseToolHandle::getAsIAlgTool ( ) const
protectedpure virtual

◆ getAsIAlgTool() [2/2]

virtual IAlgTool* BaseToolHandle::getAsIAlgTool ( )
protectedpure virtual

◆ i_retrieve()

virtual StatusCode BaseToolHandle::i_retrieve ( IAlgTool *&  ) const
protectedpure virtual

◆ isEnabled()

bool BaseToolHandle::isEnabled ( ) const
inline

Helper to check if the ToolHandle should be retrieved.

Definition at line 90 of file ToolHandle.h.

90  {
91  // the handle is considered enabled if the type/name is valid and the
92  // enabled flag was set to true, or it was already retrieved
93  return ( m_enabled && !typeAndName().empty() ) || get();
94  }
virtual std::string typeAndName() const =0
const IAlgTool * get() const
Definition: ToolHandle.h:83

◆ retrieve() [1/4]

StatusCode BaseToolHandle::retrieve ( IAlgTool *&  tool) const
inline

Definition at line 77 of file ToolHandle.h.

77 { return i_retrieve( tool ); }
virtual StatusCode i_retrieve(IAlgTool *&) const =0

◆ retrieve() [2/4]

virtual StatusCode BaseToolHandle::retrieve ( ) const
pure virtual

◆ retrieve() [3/4]

virtual StatusCode BaseToolHandle::retrieve ( DisableTool  sd)
pure virtual

◆ retrieve() [4/4]

virtual StatusCode BaseToolHandle::retrieve ( EnableTool  sd)
pure virtual

◆ setEnabled()

bool BaseToolHandle::setEnabled ( const bool  flag)
inline

Definition at line 100 of file ToolHandle.h.

100  {
101  auto old = m_enabled;
102  m_enabled = flag;
103  return old;
104  }

◆ typeAndName()

virtual std::string BaseToolHandle::typeAndName ( ) const
pure virtual

Member Data Documentation

◆ m_enabled

bool BaseToolHandle::m_enabled = true
protected

Definition at line 111 of file ToolHandle.h.


The documentation for this class was generated from the following file: