#include <GaudiKernel/LinkManager.h>
|
class | Link |
| Embedded class defining a symbolic link Note: No explicit copy constructor; implicit compiler generated one is just fine. More...
|
|
A LinkManager is the object aggregated into a DataObject, which is responsible for the handling of non-tree like links.
- Author
- M.Frank
Definition at line 31 of file LinkManager.h.
◆ DirLinkType
◆ LinkManager()
LinkManager::LinkManager |
( |
| ) |
|
|
default |
◆ ~LinkManager()
LinkManager::~LinkManager |
( |
| ) |
|
◆ addLink()
Add link by object reference and path.
Add link by object reference and path string.
Definition at line 59 of file LinkManager.cpp.
63 if ( pO && pO == pObject )
return n;
64 if ( lnk->path() ==
path ) {
65 if ( pObject && pObject != pO ) { lnk->setObject(
const_cast<DataObject*
>( pObject ) ); }
◆ empty()
bool LinkManager::empty |
( |
| ) |
const |
|
inline |
◆ link() [1/3]
Retrieve symbolic link identified by object.
Retrieve symbolic link identified by Object pointer.
Definition at line 45 of file LinkManager.cpp.
46 if ( !pObject )
return nullptr;
◆ link() [2/3]
Retrieve symbolic link identified by ID.
Definition at line 40 of file LinkManager.cpp.
◆ link() [3/3]
Retrieve symbolic link identified by path.
Retrieve symbolic link identified by Object path.
Definition at line 52 of file LinkManager.cpp.
53 if (
path.empty() )
return nullptr;
◆ newInstance()
Static instantiation.
Definition at line 37 of file LinkManager.cpp.
37 {
return s_newInstance ? ( *s_newInstance )() :
new LinkManager(); }
◆ setInstantiator()
void LinkManager::setInstantiator |
( |
LinkManager *(*)() |
newInstance | ) |
|
|
static |
◆ size()
long LinkManager::size |
( |
| ) |
const |
|
inline |
Retrieve number of link present.
Definition at line 91 of file LinkManager.h.
◆ m_linkVector
@ TODO: replace by std::vector<std::unique_ptr<Link>> once ROOT does 'automatic' schema conversion from T* to std::unique_ptr<T>...
Or, even better, just std::vector<Link>, given that Link is barely larger than a pointer (40 vs. 8 bytes) – but that requires more invasive schema evolution.
The vector containing all links which are non-tree like
Definition at line 79 of file LinkManager.h.
The documentation for this class was generated from the following files: