AlgToolHistory Class Reference

AlgToolHistory class definition. More...

#include <GaudiKernel/AlgToolHistory.h>

Inheritance diagram for AlgToolHistory:
Collaboration diagram for AlgToolHistory:

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. More...
 
const std::stringalgtool_type () const
 
const std::stringalgtool_version () const
 
const std::stringalgtool_name () const
 
const AlgToolalgtool_instance () const
 
const PropertyListproperties () const
 
const JobHistoryjobHistory () const
 
void dump (std::ostream &, const bool isXML=false, int indent=0) const
 
const std::stringname () const
 
const std::stringtype () const
 
const std::stringversion () const
 
- Public Member Functions inherited from HistoryObj
 HistoryObj ()=default
 
virtual ~HistoryObj ()=default
 
- Public Member Functions inherited from DataObject
 DataObject ()
 Standard Constructor. More...
 
 DataObject (const DataObject &rhs)
 Copy Constructor. More...
 
DataObjectoperator= (const DataObject &rhs)
 Assignment Operator. More...
 
 DataObject (DataObject &&rhs)
 Move Constructor. More...
 
DataObjectoperator= (DataObject &&rhs)
 Move Assignment Operator. More...
 
virtual ~DataObject ()
 Standard Destructor. More...
 
virtual unsigned long addRef ()
 Add reference to object. More...
 
virtual unsigned long release ()
 release reference to object More...
 
const std::stringname () const
 Retreive DataObject name. It is the name when registered in the store. More...
 
virtual StatusCode update ()
 Provide empty placeholder for internal object reconfiguration callback. More...
 
void setRegistry (IRegistry *pRegistry)
 Set pointer to Registry. More...
 
IRegistryregistry () const
 Get pointer to Registry. More...
 
LinkManagerlinkMgr () const
 Retrieve Link manager. More...
 
unsigned char version () const
 Retrieve version number of this object representation. More...
 
void setVersion (unsigned char vsn)
 Set version number of this object representation. More...
 
unsigned long refCount () const
 Return the refcount. More...
 
virtual std::ostreamfillStream (std::ostream &s) const
 Fill the output stream (ASCII) More...
 
- Public Member Functions inherited from IVersHistoryObj
virtual ~IVersHistoryObj ()=default
 

Static Public Member Functions

static const CLIDclassID ()
 
- Static Public Member Functions inherited from HistoryObj
static const CLIDclassID ()
 
static std::string convert_string (const std::string &)
 
- Static Public Member Functions inherited from DataObject
static const CLIDclassID ()
 Retrieve reference to class definition structure (static access) More...
 

Private Attributes

std::string m_type
 
std::string m_version
 
std::string m_name
 
const AlgToolm_tool
 
PropertyList m_properties
 
const JobHistorym_jobHistory
 

Additional Inherited Members

- Public Types inherited from IVersHistoryObj
typedef std::vector< Property * > PropertyList
 
- Protected Member Functions inherited from HistoryObj
virtual void indent (std::ostream &, int) const
 

Detailed Description

AlgToolHistory class definition.

Author
: Charles Leggett

Definition at line 22 of file AlgToolHistory.h.

Constructor & Destructor Documentation

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

Definition at line 21 of file AlgToolHistory.cpp.

22 :
23  m_type(alg.type()),
24  m_version("UNKNOWN"),
25  m_name(alg.name()),
26  m_tool( &alg ),
28  m_jobHistory(job)
29 {
30 }
std::string m_version
const JobHistory * m_jobHistory
std::string m_name
PropertyList m_properties
std::string m_type
const AlgTool * m_tool
const std::vector< Property * > & getProperties() const override
Definition: AlgTool.cpp:160
const std::string & type() const override
Retrieve type (concrete class) of the sub-algtool.
Definition: AlgTool.cpp:72
const std::string & name() const override
Retrieve full identifying name of the concrete tool object.
Definition: AlgTool.cpp:65
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 34 of file AlgToolHistory.cpp.

39  :
40  m_type(algType), // FIXME type_info???
41  m_version(algVersion),
42  m_name(algName),
43  m_tool(tool),
44  m_properties(props),
45  m_jobHistory(job)
46 {}
std::string m_version
const JobHistory * m_jobHistory
std::string m_name
PropertyList m_properties
std::string m_type
const AlgTool * m_tool
virtual AlgToolHistory::~AlgToolHistory ( )
inlinevirtual

Definition at line 56 of file AlgToolHistory.h.

56 {};

Member Function Documentation

const AlgTool* AlgToolHistory::algtool_instance ( ) const
inline

Definition at line 72 of file AlgToolHistory.h.

72 { return m_tool; }
const AlgTool * m_tool
const std::string& AlgToolHistory::algtool_name ( ) const
inline

Definition at line 69 of file AlgToolHistory.h.

69 { return m_name; }
std::string m_name
const std::string& AlgToolHistory::algtool_type ( ) const
inline

Definition at line 63 of file AlgToolHistory.h.

63 { return m_type; }
std::string m_type
const std::string& AlgToolHistory::algtool_version ( ) const
inline

Definition at line 66 of file AlgToolHistory.h.

66 { return m_version; }
std::string m_version
const CLID & AlgToolHistory::classID ( )
static

Definition at line 50 of file AlgToolHistory.cpp.

50  {
51 
52  static const CLID CLID_AlgToolHistory = 171959758; // from `clid AlgToolHistory`
53  return CLID_AlgToolHistory;
54 
55 }
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
virtual const CLID& AlgToolHistory::clID ( ) const
inlinevirtual

Retrieve reference to class definition structure.

Retrieve Pointer to class definition structure.

Reimplemented from HistoryObj.

Definition at line 59 of file AlgToolHistory.h.

59 { return classID(); }
static const CLID & classID()
void AlgToolHistory::dump ( std::ostream ost,
const bool  isXML = false,
int  indent = 0 
) const
virtual

Implements HistoryObj.

Definition at line 60 of file AlgToolHistory.cpp.

60  {
61 
62  if (!isXML) {
63 
64  ost << "Name: " << algtool_name() << endl;
65  ost << "Type: " << algtool_type() << endl;
66  ost << "Version: " << algtool_version() << endl;
67  ost << "Parent: " << algtool_instance()->name() << endl;
68 
69  //Properties
70  ost << "Properties: [" << endl;
71 
72  for ( const auto& iprop : properties() ) {
73  iprop->fillStream(ost);
74  ost << endl;
75  }
76  ost << "]" << endl;
77 
78  } else {
79 
80  ind += 2;
81  indent(ost,ind);
82  ost << "<COMPONENT name=\"" << algtool_name()
83  << "\" class=\"" << convert_string(algtool_type())
84  << "\" version=\"" << convert_string(algtool_version())
85  << "\" parent=\"" << convert_string(algtool_instance()->name())
86  << "\">" << endl;
87 
88  for ( const auto& iprop : properties() ) {
89 
90  indent(ost,ind+2);
91  ost << "<PROPERTY name=\"" << iprop->name()
92  << "\" value=\"" << convert_string(iprop->toString())
93  << "\" documentation=\"" << convert_string(iprop->documentation())
94  << "\">" << endl;
95  }
96 
97  indent(ost,ind);
98  ost << "</COMPONENT>" << endl;
99 
100  }
101 
102 }
const AlgTool * algtool_instance() const
T endl(T...args)
const std::string & name() const
virtual void indent(std::ostream &, int) const
Definition: HistoryObj.cpp:43
const PropertyList & properties() const
const std::string & algtool_type() const
static std::string convert_string(const std::string &)
Definition: HistoryObj.cpp:21
const std::string & algtool_version() const
const std::string & name() const override
Retrieve full identifying name of the concrete tool object.
Definition: AlgTool.cpp:65
const std::string & algtool_name() const
const JobHistory* AlgToolHistory::jobHistory ( ) const
inline

Definition at line 78 of file AlgToolHistory.h.

78 { return m_jobHistory; }
const JobHistory * m_jobHistory
const std::string& AlgToolHistory::name ( ) const
inlinevirtual

Implements IVersHistoryObj.

Definition at line 82 of file AlgToolHistory.h.

82 { return algtool_name(); }
const std::string & algtool_name() const
const PropertyList& AlgToolHistory::properties ( ) const
inlinevirtual

Implements IVersHistoryObj.

Definition at line 75 of file AlgToolHistory.h.

75 { return m_properties; }
PropertyList m_properties
const std::string& AlgToolHistory::type ( ) const
inlinevirtual

Implements IVersHistoryObj.

Definition at line 83 of file AlgToolHistory.h.

83 { return algtool_type(); }
const std::string & algtool_type() const
const std::string& AlgToolHistory::version ( ) const
inlinevirtual

Implements IVersHistoryObj.

Definition at line 84 of file AlgToolHistory.h.

84 { return algtool_version(); }
const std::string & algtool_version() const

Member Data Documentation

const JobHistory* AlgToolHistory::m_jobHistory
private

Definition at line 42 of file AlgToolHistory.h.

std::string AlgToolHistory::m_name
private

Definition at line 33 of file AlgToolHistory.h.

PropertyList AlgToolHistory::m_properties
private

Definition at line 39 of file AlgToolHistory.h.

const AlgTool* AlgToolHistory::m_tool
private

Definition at line 36 of file AlgToolHistory.h.

std::string AlgToolHistory::m_type
private

Definition at line 27 of file AlgToolHistory.h.

std::string AlgToolHistory::m_version
private

Definition at line 30 of file AlgToolHistory.h.


The documentation for this class was generated from the following files: