| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

AlgToolHistory Class Reference

AlgToolHistory class definition. More...

#include <AlgToolHistory.h>

Inheritance diagram for AlgToolHistory:

[legend]
Collaboration diagram for AlgToolHistory:
[legend]
List of all members.

inline code of class DataObject

void setRegistry (IRegistry *pRegistry)
 Set pointer to Registry.
IRegistryregistry () const
 Get pointer to Registry.
LinkManagerlinkMgr () 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

Public Member Functions

 AlgToolHistory (const AlgTool &alg, const JobHistory *job)
 AlgToolHistory (const std::string &algVersion, const std::string &algName, const std::string &algType, const AlgTool *tool, const PropertyList &props, const JobHistory *job)
virtual ~AlgToolHistory ()
virtual const CLIDclID () const
 Retrieve reference to class definition structure.
const std::string & algtool_type () const
const std::string & algtool_version () const
const std::string & algtool_name () const
const AlgToolalgtool_instance () const
const PropertyListproperties () 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 StreamBufferserialize (StreamBuffer &s)
 Serialization mechanism: Serialize the object for reading.
virtual StreamBufferserialize (StreamBuffer &s) const
 Serialization mechanism: Serialize the object for writing.

Static Public Member Functions

static const CLIDclassID ()
 Retrieve reference to class definition structure (static access).

Private Attributes

std::string m_type
std::string m_version
 Version number.
std::string m_name
const AlgToolm_tool
PropertyList m_properties
const JobHistorym_jobHistory

Detailed Description

AlgToolHistory class definition.

Author:
: Charles Leggett

Definition at line 23 of file AlgToolHistory.h.


Member Typedef Documentation

typedef std::vector<Property*> AlgToolHistory::PropertyList

Definition at line 28 of file AlgToolHistory.h.


Constructor & Destructor Documentation

AlgToolHistory::AlgToolHistory ( const AlgTool alg,
const JobHistory job 
)

AlgToolHistory::AlgToolHistory ( const std::string &  algVersion,
const std::string &  algName,
const std::string &  algType,
const AlgTool tool,
const PropertyList props,
const JobHistory job 
)

virtual AlgToolHistory::~AlgToolHistory (  )  [inline, virtual]

Definition at line 62 of file AlgToolHistory.h.

00062 {};


Member Function Documentation

virtual const CLID& AlgToolHistory::clID (  )  const [inline, virtual]

Retrieve reference to class definition structure.

Reimplemented from HistoryObj.

Definition at line 65 of file AlgToolHistory.h.

00065 { return classID(); }

static const CLID& AlgToolHistory::classID (  )  [static]

Retrieve reference to class definition structure (static access).

Reimplemented from HistoryObj.

const std::string& AlgToolHistory::algtool_type (  )  const [inline]

Definition at line 69 of file AlgToolHistory.h.

00069 { return m_type; }

const std::string& AlgToolHistory::algtool_version (  )  const [inline]

Definition at line 72 of file AlgToolHistory.h.

00072 { return m_version; }

const std::string& AlgToolHistory::algtool_name (  )  const [inline]

Definition at line 75 of file AlgToolHistory.h.

00075 { return m_name; }

const AlgTool* AlgToolHistory::algtool_instance (  )  const [inline]

Definition at line 78 of file AlgToolHistory.h.

00078 { return m_tool; }

const PropertyList& AlgToolHistory::properties (  )  const [inline]

Definition at line 81 of file AlgToolHistory.h.

00081 { return m_properties; }

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.

00091                                                         {
00092     s << "DataObject at " << std::hex << this;
00093     return s;
00094   }


Friends And Related Function Documentation

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   }


Member Data Documentation

std::string AlgToolHistory::m_type [private]

Definition at line 33 of file AlgToolHistory.h.

std::string AlgToolHistory::m_version [private]

Version number.

Reimplemented from DataObject.

Definition at line 36 of file AlgToolHistory.h.

std::string AlgToolHistory::m_name [private]

Definition at line 39 of file AlgToolHistory.h.

const AlgTool* AlgToolHistory::m_tool [private]

Definition at line 42 of file AlgToolHistory.h.

PropertyList AlgToolHistory::m_properties [private]

Definition at line 45 of file AlgToolHistory.h.

const JobHistory* AlgToolHistory::m_jobHistory [private]

Definition at line 48 of file AlgToolHistory.h.


The documentation for this class was generated from the following file:
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 19:57:05 2011 for GaudiKernel by doxygen 1.4.7