Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
DataObjectHandleBase.cpp File Reference
#include "GaudiKernel/DataObjectHandleBase.h"
#include "GaudiKernel/AlgTool.h"
#include "GaudiKernel/IDataProviderSvc.h"
#include "GaudiKernel/SerializeSTL.h"
#include "GaudiKernel/ServiceLocatorHelper.h"
#include <Gaudi/Algorithm.h>
#include <boost/tokenizer.hpp>
#include <ostream>
#include <sstream>
#include <string>
Include dependency graph for DataObjectHandleBase.cpp:

Go to the source code of this file.

Functions

std::ostreamoperator<< (std::ostream &str, const DataObjectHandleBase &d)
 

Variables

const DataObjID INVALID_DATAOBJID = DataObjID()
 

Function Documentation

std::ostream& operator<< ( std::ostream str,
const DataObjectHandleBase d 
)

Definition at line 152 of file DataObjectHandleBase.cpp.

152  {
153 
154  str << d.fullKey() << " m: " << d.mode();
155  if ( d.owner() ) str << " o: " << d.owner()->name();
156  str << " opt: " << d.isOptional();
157  return str;
158 }
virtual Mode mode() const
Definition: DataHandle.h:42
virtual const DataObjID & fullKey() const
Definition: DataHandle.h:48
bool isOptional() const
Check if the data object declared is optional for the algorithm.
virtual const std::string & name() const =0
Retrieve the name of the instance.
virtual IDataHandleHolder * owner() const
Definition: DataHandle.h:40

Variable Documentation

const DataObjID INVALID_DATAOBJID = DataObjID()

Definition at line 13 of file DataObjectHandleBase.cpp.