The Gaudi Framework  v30r3 (a5ef0a68)
ToolHandle.h File Reference
#include "GaudiKernel/GaudiHandle.h"
#include "GaudiKernel/IAlgTool.h"
#include "GaudiKernel/INamedInterface.h"
#include "GaudiKernel/IToolSvc.h"
#include "GaudiKernel/ServiceHandle.h"
#include "GaudiKernel/TaggedBool.h"
#include <stdexcept>
#include <string>
#include <type_traits>
#include <vector>
Include dependency graph for ToolHandle.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ToolHandleInfo
 General info and helper functions for toolhandles and arrays. More...
 
class  BaseToolHandle
 Non-templated base class for actual ToolHandle<T>. More...
 
class  ToolHandle< T >
 Handle to be used in lieu of naked pointers to tools. More...
 
class  PublicToolHandle< T >
 Helper class to construct ToolHandle instances for public tools via the auto registering constructor. More...
 
class  ToolHandleArray< T >
 Array of Handles to be used in lieu of vector of naked pointers to tools. More...
 
class  PublicToolHandleArray< T >
 Helper class to construct ToolHandle instances for public tools via the auto registering constructor. More...
 

Typedefs

using DisableTool = Gaudi::tagged_bool< class DisableTool_tag >
 
using EnableTool = Gaudi::tagged_bool< class EnableTool_tag >
 

Functions

template<class T >
std::ostreamoperator<< (std::ostream &os, const ToolHandle< T > &handle)
 
template<class T >
std::ostreamoperator<< (std::ostream &os, const ToolHandleArray< T > &handle)
 

Typedef Documentation

using DisableTool = Gaudi::tagged_bool<class DisableTool_tag>

Definition at line 25 of file ToolHandle.h.

using EnableTool = Gaudi::tagged_bool<class EnableTool_tag>

Definition at line 26 of file ToolHandle.h.

Function Documentation

template<class T >
std::ostream& operator<< ( std::ostream os,
const ToolHandle< T > &  handle 
)
inline

Definition at line 470 of file ToolHandle.h.

471 {
472  return operator<<( os, static_cast<const GaudiHandleInfo&>( handle ) );
473 }
template<class T >
std::ostream& operator<< ( std::ostream os,
const ToolHandleArray< T > &  handle 
)
inline

Definition at line 476 of file ToolHandle.h.

477 {
478  return operator<<( os, static_cast<const GaudiHandleInfo&>( handle ) );
479 }