The Gaudi Framework  v32r2 (46d42edc)
AlgToolHistory.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_ALGTOOLHISTORY_H
2 #define GAUDIKERNEL_ALGTOOLHISTORY_H
3 
6 
7 class AlgTool;
8 class JobHistory;
9 
10 #include <memory>
11 #include <string>
12 #include <vector>
13 
23 
24 private: // data
25  // Algtool full type.
27 
28  // Algtool version.
30 
31  // Algtool name.
33 
34  // Pointer to the algtool
35  const AlgTool* m_tool;
36 
37  // Properties.
39 
40  // Link to jobHistory
42 
43 public:
44  AlgToolHistory( const AlgTool& alg, const JobHistory* job );
45 
46  AlgToolHistory( const std::string& algVersion, const std::string& algName, const std::string& algType,
47  const AlgTool* tool, const PropertyList& props, const JobHistory* job );
48 
49  // Class IDs
50  const CLID& clID() const override { return classID(); }
51  static const CLID& classID();
52 
53  // Return the algtool type.
54  const std::string& algtool_type() const { return m_type; }
55 
56  // Return the algtool version.
57  const std::string& algtool_version() const { return m_version; }
58 
59  // Return the algtool name.
60  const std::string& algtool_name() const { return m_name; }
61 
62  // Pointer to the algtool
63  const AlgTool* algtool_instance() const { return m_tool; }
64 
65  // Return the algorithm properties.
66  const PropertyList& properties() const override { return m_properties; }
67 
68  // Return the jobHistory
69  const JobHistory* jobHistory() const { return m_jobHistory; }
70 
71  void dump( std::ostream&, const bool isXML = false, int indent = 0 ) const override;
72 
73  const std::string& name() const override { return algtool_name(); }
74  const std::string& type() const override { return algtool_type(); }
75  const std::string& version() const override { return algtool_version(); }
76 };
77 
78 // Output stream.
80 
81 #endif
const PropertyList & properties() const override
std::string m_version
const JobHistory * m_jobHistory
std::string m_name
PropertyList m_properties
const std::string & algtool_name() const
const std::string & algtool_version() const
const std::string & name() const override
static const CLID & classID()
Definition: HistoryObj.cpp:55
virtual void dump(std::ostream &, const bool isXML=false, int indent=0) const =0
Base class for History Objects.
Definition: HistoryObj.h:21
GAUDI_API std::ostream & operator<<(std::ostream &lhs, const AlgToolHistory &rhs)
JobHistory class definition.
Definition: JobHistory.h:22
std::string m_type
const AlgTool * algtool_instance() const
STL class.
unsigned char m_version
Version number.
Definition: DataObject.h:35
const std::string & algtool_type() const
const std::string & version() const override
const std::string & type() const override
const AlgTool * m_tool
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
AlgToolHistory class definition.
Base class from which all the concrete tool classes should be derived.
Definition: AlgTool.h:47
Interface for Versioned History Objects.
#define GAUDI_API
Definition: Kernel.h:71
STL class.
const CLID & clID() const override
Retrieve reference to class definition structure.
const JobHistory * jobHistory() const