|
Gaudi Framework, version v22r1 |
| Home | Generated: Mon Feb 28 2011 |
AlgToolHistory class definition. More...
#include <AlgToolHistory.h>


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 CLID & | clID () 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 AlgTool * | algtool_instance () const |
| const PropertyList & | properties () const |
Static Public Member Functions | |
| static const CLID & | classID () |
| 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 AlgTool * | m_tool |
| PropertyList | m_properties |
| const JobHistory * | m_jobHistory |
AlgToolHistory class definition.
Definition at line 23 of file AlgToolHistory.h.
| typedef std::vector<Property*> AlgToolHistory::PropertyList |
Definition at line 28 of file AlgToolHistory.h.
| AlgToolHistory::AlgToolHistory | ( | const AlgTool & | alg, |
| const JobHistory * | job | ||
| ) |
Definition at line 23 of file AlgToolHistory.cpp.
: m_type(alg.type()), m_version("UNKNOWN"), m_name(alg.name()), m_tool( &alg ), m_properties(alg.getProperties()), m_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 | ||
| ) |
Definition at line 36 of file AlgToolHistory.cpp.
: m_type(algType), // FIXME type_info??? m_version(algVersion), m_name(algName), m_tool(tool), m_properties(props), m_jobHistory(job) {}
| virtual AlgToolHistory::~AlgToolHistory | ( | ) | [inline, virtual] |
Definition at line 62 of file AlgToolHistory.h.
{};
| const AlgTool* AlgToolHistory::algtool_instance | ( | ) | const [inline] |
Definition at line 78 of file AlgToolHistory.h.
{ return m_tool; }
| const std::string& AlgToolHistory::algtool_name | ( | ) | const [inline] |
Definition at line 75 of file AlgToolHistory.h.
{ return m_name; }
| const std::string& AlgToolHistory::algtool_type | ( | ) | const [inline] |
Definition at line 69 of file AlgToolHistory.h.
{ return m_type; }
| const std::string& AlgToolHistory::algtool_version | ( | ) | const [inline] |
Definition at line 72 of file AlgToolHistory.h.
{ return m_version; }
| const CLID & AlgToolHistory::classID | ( | ) | [static] |
Retrieve reference to class definition structure (static access)
Retrieve Pointer to class definition structure.
Reimplemented from HistoryObj.
Definition at line 52 of file AlgToolHistory.cpp.
{
static CLID CLID_AlgToolHistory = 171959758; // from `clid AlgToolHistory`
return CLID_AlgToolHistory;
}
| virtual const CLID& AlgToolHistory::clID | ( | ) | const [inline, virtual] |
Retrieve reference to class definition structure.
Retrieve Pointer to class definition structure.
Reimplemented from HistoryObj.
Definition at line 65 of file AlgToolHistory.h.
{ return classID(); }
| const PropertyList& AlgToolHistory::properties | ( | ) | const [inline] |
Definition at line 81 of file AlgToolHistory.h.
{ return m_properties; }
const JobHistory* AlgToolHistory::m_jobHistory [private] |
Definition at line 48 of file AlgToolHistory.h.
std::string AlgToolHistory::m_name [private] |
Definition at line 39 of file AlgToolHistory.h.
PropertyList AlgToolHistory::m_properties [private] |
Definition at line 45 of file AlgToolHistory.h.
const AlgTool* AlgToolHistory::m_tool [private] |
Definition at line 42 of file AlgToolHistory.h.
std::string AlgToolHistory::m_type [private] |
Definition at line 33 of file AlgToolHistory.h.
std::string AlgToolHistory::m_version [private] |