The Gaudi Framework  v29r0 (ff2e7097)
GaudiHandle.h File Reference
#include "GaudiKernel/GaudiException.h"
#include "GaudiKernel/IInterface.h"
#include "GaudiKernel/System.h"
#include <algorithm>
#include <iostream>
#include <stdexcept>
#include <string>
#include <type_traits>
#include <vector>
Include dependency graph for GaudiHandle.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  GaudiHandleInfo
 
class  GaudiHandleBase
 Base class to handles to be used in lieu of naked pointers to various Gaudi components. More...
 
class  GaudiHandle< T >
 Handle to be used in lieu of naked pointers to gaudis. More...
 
class  GaudiHandleArrayBase
 Base class of array's of various gaudihandles. More...
 
class  GaudiHandleArray< T >
 T is the concrete handle type, e.g. More...
 

Functions

std::ostreamoperator<< (std::ostream &os, const GaudiHandleInfo &handle)
 

Function Documentation

std::ostream& operator<< ( std::ostream os,
const GaudiHandleInfo handle 
)

Definition at line 104 of file GaudiHandle.cpp.

105 {
107  const auto& propName = handle.propertyName();
108  if ( !propName.empty() ) msg += propName + " = ";
109  msg += handle.pythonRepr();
110  os << msg;
111  return os;
112 }
STL class.
const std::string & propertyName() const
name as used in declareProperty(name,gaudiHandle)
Definition: GaudiHandle.h:41
virtual std::string pythonRepr() const =0
Python representation of handle, i.e.