The Gaudi Framework  v30r4 (9b837755)
DataObjectHandleBase.cpp File Reference
#include "GaudiKernel/DataObjectHandleBase.h"
#include "GaudiKernel/AlgTool.h"
#include "GaudiKernel/Algorithm.h"
#include "GaudiKernel/IDataProviderSvc.h"
#include "GaudiKernel/SerializeSTL.h"
#include "GaudiKernel/ServiceLocatorHelper.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 161 of file DataObjectHandleBase.cpp.

162 {
163 
164  str << d.fullKey() << " m: " << d.mode();
165  if ( d.owner() ) str << " o: " << d.owner()->name();
166  str << " opt: " << d.isOptional();
167  return str;
168 }
virtual IDataHandleHolder * owner() const
Definition: DataHandle.h:48
virtual const DataObjID & fullKey() const
Definition: DataHandle.h:56
virtual Mode mode() const
Definition: DataHandle.h:50
bool isOptional() const
Check if the data object declared is optional for the algorithm.

Variable Documentation

const DataObjID INVALID_DATAOBJID = DataObjID()

Definition at line 13 of file DataObjectHandleBase.cpp.