#include <GaudiKernel/DataObject.h>
Inheritance diagram for DataObject:
inline code of class DataObject | |
| void | setRegistry (IRegistry *pRegistry) |
| Set pointer to Registry. | |
| IRegistry * | registry () const |
| Get pointer to Registry. | |
| LinkManager * | linkMgr () const |
| Retrieve Link manager. | |
| unsigned char | version () const |
| Retrieve version number of this object representation. | |
| void | setVersion (unsigned char vsn) |
| Set version number of this object representation. | |
| unsigned long | refCount () const |
| Return the refcount. | |
| virtual std::ostream & | fillStream (std::ostream &s) const |
| Fill the output stream (ASCII). | |
| std::ostream & | operator<< (std::ostream &s, const DataObject &obj) |
| Output operator (ASCII). | |
Public Member Functions | |
| DataObject () | |
| Standard Constructor. | |
| DataObject (const DataObject &) | |
| Copy Constructor. | |
| virtual | ~DataObject () |
| Standard Destructor. | |
| virtual unsigned long | addRef () |
| Add reference to object. | |
| virtual unsigned long | release () |
| release reference to object | |
| virtual const CLID & | clID () const |
| Retrieve reference to class definition structure. | |
| const std::string & | name () const |
| Retreive DataObject name. It is the name when registered in the store. | |
| virtual StreamBuffer & | serialize (StreamBuffer &s) |
| Serialization mechanism: Serialize the object for reading. | |
| virtual StreamBuffer & | serialize (StreamBuffer &s) const |
| Serialization mechanism: Serialize the object for writing. | |
Static Public Member Functions | |
| static const CLID & | classID () |
| Retrieve reference to class definition structure (static access). | |
Private Attributes | |
| unsigned long | m_refCount |
| Reference count. | |
| unsigned char | m_version |
| Version number. | |
| IRegistry * | m_pRegistry |
| Pointer to the Registry Object. | |
| LinkManager * | m_pLinkMgr |
| Store of symbolic links. | |
The base class supplies the implementation of data streaming.
Definition at line 31 of file DataObject.h.
| DataObject::DataObject | ( | ) |
Standard Constructor.
| DataObject::DataObject | ( | const DataObject & | ) |
Copy Constructor.
| virtual DataObject::~DataObject | ( | ) | [virtual] |
Standard Destructor.
| virtual unsigned long DataObject::addRef | ( | ) | [virtual] |
Add reference to object.
| virtual unsigned long DataObject::release | ( | ) | [virtual] |
release reference to object
| virtual const CLID& DataObject::clID | ( | ) | const [virtual] |
Retrieve reference to class definition structure.
Reimplemented in AlgorithmHistory, AlgToolHistory, DataHistory, HistoryObj, JobHistory, KeyedContainer< DATATYPE, MAPPING >, NTuple::Directory, NTuple::File, NTuple::ColumnWiseTuple, NTuple::RowWiseTuple, ObjectList< TYPE >, ObjectVector< TYPE >, RefTable1to1< FROM, TO >, RefTable1toN< FROM, TO >, ServiceHistory, and SharedObjectsContainer< TYPE >.
| static const CLID& DataObject::classID | ( | ) | [static] |
Retrieve reference to class definition structure (static access).
Reimplemented in AlgorithmHistory, AlgToolHistory, DataHistory, HistoryObj, JobHistory, KeyedContainer< DATATYPE, MAPPING >, NTuple::Directory, NTuple::File, NTuple::ColumnWiseTuple, NTuple::RowWiseTuple, ObjectList< TYPE >, ObjectVector< TYPE >, ServiceHistory, and SharedObjectsContainer< TYPE >.
| const std::string& DataObject::name | ( | ) | const |
Retreive DataObject name. It is the name when registered in the store.
Reimplemented in NTuple::File, and ServiceHistory.
| virtual StreamBuffer& DataObject::serialize | ( | StreamBuffer & | s | ) | [virtual] |
Serialization mechanism: Serialize the object for reading.
Reimplemented in RefTableBase< FROM, MAPENTRY >, RefTableBase< FROM, SmartRefVector< TO > >, and RefTableBase< FROM, SmartRef< TO > >.
| virtual StreamBuffer& DataObject::serialize | ( | StreamBuffer & | s | ) | const [virtual] |
Serialization mechanism: Serialize the object for writing.
Reimplemented in RefTableBase< FROM, MAPENTRY >, RefTableBase< FROM, SmartRefVector< TO > >, and RefTableBase< FROM, SmartRef< TO > >.
| void DataObject::setRegistry | ( | IRegistry * | pRegistry | ) | [inline] |
Set pointer to Registry.
Definition at line 67 of file DataObject.h.
00067 { 00068 m_pRegistry = pRegistry; 00069 }
| IRegistry* DataObject::registry | ( | ) | const [inline] |
Get pointer to Registry.
Definition at line 71 of file DataObject.h.
00071 { 00072 return m_pRegistry; 00073 }
| LinkManager* DataObject::linkMgr | ( | ) | const [inline] |
Retrieve Link manager.
Definition at line 75 of file DataObject.h.
00075 { 00076 return m_pLinkMgr; 00077 }
| unsigned char DataObject::version | ( | ) | const [inline] |
Retrieve version number of this object representation.
Definition at line 79 of file DataObject.h.
00079 { 00080 return m_version; 00081 }
| void DataObject::setVersion | ( | unsigned char | vsn | ) | [inline] |
Set version number of this object representation.
Definition at line 83 of file DataObject.h.
00083 { 00084 m_version = vsn; 00085 }
| unsigned long DataObject::refCount | ( | ) | const [inline] |
Return the refcount.
Definition at line 87 of file DataObject.h.
00087 { 00088 return m_refCount; 00089 }
| virtual std::ostream& DataObject::fillStream | ( | std::ostream & | s | ) | const [inline, virtual] |
Fill the output stream (ASCII).
Reimplemented in ObjectList< TYPE >, and ObjectVector< TYPE >.
Definition at line 91 of file DataObject.h.
| std::ostream& operator<< | ( | std::ostream & | s, | |
| const DataObject & | obj | |||
| ) | [friend] |
Output operator (ASCII).
Definition at line 96 of file DataObject.h.
00096 { 00097 return obj.fillStream(s); 00098 }
unsigned long DataObject::m_refCount [private] |
unsigned char DataObject::m_version [private] |
IRegistry* DataObject::m_pRegistry [private] |
LinkManager* DataObject::m_pLinkMgr [private] |
1.4.7