#include <AlgorithmHistory.h>
Inheritance diagram for AlgorithmHistory:
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 Types | |
| typedef std::vector< Property * > | PropertyList |
| typedef std::vector< const AlgorithmHistory * > | HistoryList |
Public Member Functions | |
| AlgorithmHistory (const Algorithm &alg, const JobHistory *job) | |
| AlgorithmHistory (const std::string &algVersion, const std::string &algName, const std::string &algType, const PropertyList &props, const HistoryList &subHists) | |
| virtual | ~AlgorithmHistory () |
| virtual const CLID & | clID () const |
| Retrieve reference to class definition structure. | |
| const std::string & | algorithm_type () const |
| const std::string & | algorithm_version () const |
| const std::string & | algorithm_name () const |
| const Algorithm * | algorithm () const |
| const PropertyList & | properties () const |
| const HistoryList & | subalgorithm_histories () const |
| const JobHistory * | jobHistory () const |
| virtual unsigned long | addRef () |
| Add reference to object. | |
| virtual unsigned long | release () |
| release reference to object | |
| 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 | |
| std::string | m_algorithm_type |
| std::string | m_algorithm_version |
| std::string | m_algorithm_name |
| const Algorithm * | m_algorithm |
| PropertyList | m_properties |
| HistoryList | m_subalgorithm_histories |
| const JobHistory * | m_jobHistory |
Definition at line 28 of file AlgorithmHistory.h.
| typedef std::vector<Property*> AlgorithmHistory::PropertyList |
Definition at line 33 of file AlgorithmHistory.h.
| typedef std::vector<const AlgorithmHistory*> AlgorithmHistory::HistoryList |
Definition at line 36 of file AlgorithmHistory.h.
| AlgorithmHistory::AlgorithmHistory | ( | const Algorithm & | alg, | |
| const JobHistory * | job | |||
| ) | [explicit] |
| AlgorithmHistory::AlgorithmHistory | ( | const std::string & | algVersion, | |
| const std::string & | algName, | |||
| const std::string & | algType, | |||
| const PropertyList & | props, | |||
| const HistoryList & | subHists | |||
| ) | [explicit] |
| virtual AlgorithmHistory::~AlgorithmHistory | ( | ) | [virtual] |
| virtual const CLID& AlgorithmHistory::clID | ( | ) | const [inline, virtual] |
Retrieve reference to class definition structure.
Reimplemented from HistoryObj.
Definition at line 76 of file AlgorithmHistory.h.
00076 { return classID(); }
| static const CLID& AlgorithmHistory::classID | ( | ) | [static] |
| const std::string& AlgorithmHistory::algorithm_type | ( | ) | const [inline] |
| const std::string& AlgorithmHistory::algorithm_version | ( | ) | const [inline] |
| const std::string& AlgorithmHistory::algorithm_name | ( | ) | const [inline] |
| const Algorithm* AlgorithmHistory::algorithm | ( | ) | const [inline] |
| const PropertyList& AlgorithmHistory::properties | ( | ) | const [inline] |
| const HistoryList& AlgorithmHistory::subalgorithm_histories | ( | ) | const [inline] |
| const JobHistory* AlgorithmHistory::jobHistory | ( | ) | const [inline] |
| virtual unsigned long DataObject::addRef | ( | ) | [virtual, inherited] |
Add reference to object.
| virtual unsigned long DataObject::release | ( | ) | [virtual, inherited] |
release reference to object
| const std::string& DataObject::name | ( | ) | const [inherited] |
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, inherited] |
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, inherited] |
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, inherited] |
Set pointer to Registry.
Definition at line 67 of file DataObject.h.
00067 { 00068 m_pRegistry = pRegistry; 00069 }
| IRegistry* DataObject::registry | ( | ) | const [inline, inherited] |
Get pointer to Registry.
Definition at line 71 of file DataObject.h.
00071 { 00072 return m_pRegistry; 00073 }
| LinkManager* DataObject::linkMgr | ( | ) | const [inline, inherited] |
Retrieve Link manager.
Definition at line 75 of file DataObject.h.
00075 { 00076 return m_pLinkMgr; 00077 }
| unsigned char DataObject::version | ( | ) | const [inline, inherited] |
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, inherited] |
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, inherited] |
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, inherited] |
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, inherited] |
Output operator (ASCII).
Definition at line 96 of file DataObject.h.
00096 { 00097 return obj.fillStream(s); 00098 }
std::string AlgorithmHistory::m_algorithm_type [private] |
Definition at line 41 of file AlgorithmHistory.h.
std::string AlgorithmHistory::m_algorithm_version [private] |
Definition at line 44 of file AlgorithmHistory.h.
std::string AlgorithmHistory::m_algorithm_name [private] |
Definition at line 47 of file AlgorithmHistory.h.
const Algorithm* AlgorithmHistory::m_algorithm [private] |
Definition at line 50 of file AlgorithmHistory.h.
PropertyList AlgorithmHistory::m_properties [private] |
Definition at line 53 of file AlgorithmHistory.h.
Definition at line 56 of file AlgorithmHistory.h.
const JobHistory* AlgorithmHistory::m_jobHistory [private] |
Definition at line 59 of file AlgorithmHistory.h.
1.4.7