Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
DirectoryCnv.cpp
Go to the documentation of this file.
1 // Include files
2 #include "DirectoryCnv.h"
3 //------------------------------------------------------------------------------
4 //
5 // Implementation of class : RootHistCnv::DirectoryCnv
6 //
7 // Author : Charles Leggett
8 //
9 //------------------------------------------------------------------------------
11 //------------------------------------------------------------------------------
12 StatusCode RootHistCnv::DirectoryCnv::createObj( IOpaqueAddress* /* pAddress */, DataObject*& refpObject ) {
13  refpObject = new DataObject();
14  return StatusCode::SUCCESS;
15 }
16 
17 //------------------------------------------------------------------------------
19  if ( changeDirectory( pObj ) ) {
20  const char* d_nam = pObj->name().c_str() + 1;
21  if ( !gDirectory->GetKey( d_nam ) ) { gDirectory->mkdir( d_nam ); }
22  gDirectory->cd( d_nam );
23  return createAddress( pObj, gDirectory, nullptr, refpAddr );
24  }
25  refpAddr = nullptr;
26  return StatusCode::FAILURE;
27 }
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
#define DECLARE_CONVERTER(x)
Definition: Converter.h:150
StatusCode createRep(DataObject *pObj, IOpaqueAddress *&refpAddr) override
Convert the transient object to the requested representation.
TDirectory * changeDirectory(DataObject *pObject)
Switch to object directory (=Parent directory)
Definition: RConverter.cpp:200
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
T c_str(T...args)
constexpr static const auto FAILURE
Definition: StatusCode.h:86
const std::string & name() const
Retreive DataObject name. It is the name when registered in the store.
Definition: DataObject.cpp:62
Opaque address interface definition.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
StatusCode createAddress(DataObject *pObject, TDirectory *pDir, TObject *pTObject, IOpaqueAddress *&refpAddr)
Create address of the transient object according to the requested representation. ...
Definition: RConverter.cpp:155