Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v36r16 (ea80daf8)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
DataHandle.cpp
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2020 CERN for the benefit of the LHCb and ATLAS collaborations *
3 * *
4 * This software is distributed under the terms of the Apache version 2 licence, *
5 * copied verbatim in the file "LICENSE". *
6 * *
7 * In applying this licence, CERN does not waive the privileges and immunities *
8 * granted to it by virtue of its status as an Intergovernmental Organization *
9 * or submit itself to any jurisdiction. *
10 \***********************************************************************************/
11 #include "GaudiKernel/DataHandle.h"
13 
14 #include <sstream>
15 
17 
18 namespace Gaudi {
21  ost << "DataHandle(" << fullKey() << ", '";
22  switch ( mode() ) {
24  ost << "R";
25  break;
26  case DataHandle::Mode::Writer:
27  ost << "W";
28  break;
29  default:
30  ost << "UNKNOWN";
31  break;
32  }
33  ost << "', '" + default_type + "')";
34  return ost.str();
35  }
36 
38  str << d.fullKey() << " m: " << d.mode();
39  if ( d.owner() ) str << " o: " << d.owner()->name();
40  return str;
41  }
42 } // namespace Gaudi
std::string
STL class.
Gaudi::DataHandle::default_type
static const std::string default_type
Definition: DataHandle.h:83
Gaudi::DataHandle
Definition: DataHandle.h:38
INamedInterface::name
virtual const std::string & name() const =0
Retrieve the name of the instance.
Gaudi::DataHandle::owner
virtual IDataHandleHolder * owner() const
Definition: DataHandle.h:53
std::ostream
STL class.
Gaudi
Header file for std:chrono::duration-based Counters.
Definition: __init__.py:1
std::ostringstream
STL class.
IDataHandleHolder.h
Gaudi::DataHandle::mode
virtual Mode mode() const
Definition: DataHandle.h:55
Gaudi::DataHandle::pythonRepr
virtual std::string pythonRepr() const
Definition: DataHandle.cpp:19
DataHandle.h
std::ostringstream::str
T str(T... args)
Gaudi::DataHandle::fullKey
virtual const DataObjID & fullKey() const
Definition: DataHandle.h:61
compareOutputFiles.Reader
Reader
Definition: compareOutputFiles.py:498
Gaudi::operator<<
std::ostream & operator<<(std::ostream &o, const RootAddress &addr)
Definition: MIHelpers.h:20