Base class for History Objects.
More...
#include <GaudiKernel/HistoryObj.h>
|
| | HistoryObj () |
| |
| virtual | ~HistoryObj () |
| |
| virtual const CLID & | clID () const |
| | Retrieve reference to class definition structure.
|
| |
| virtual void | dump (std::ostream &, const bool isXML=false, int indent=0) const =0 |
| |
| | DataObject () |
| | Standard Constructor.
|
| |
| | DataObject (const DataObject &) |
| | Copy Constructor.
|
| |
| virtual | ~DataObject () |
| | Standard Destructor.
|
| |
| 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 StatusCode | update () |
| | Provide empty placeholder for internal object reconfiguration callback.
|
| |
| 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)
|
| |
|
| static const CLID & | classID () |
| |
| static std::string | convert_string (const std::string &) |
| |
| static const CLID & | classID () |
| | Retrieve reference to class definition structure (static access)
|
| |
|
| virtual void | indent (std::ostream &, int) const |
| |
Base class for History Objects.
- Author
- Charles Leggett
- Date
- Jul 13 2004
Definition at line 24 of file HistoryObj.h.
| HistoryObj::HistoryObj |
( |
| ) |
|
| HistoryObj::~HistoryObj |
( |
| ) |
|
|
virtual |
| const CLID & HistoryObj::classID |
( |
| ) |
|
|
static |
Definition at line 62 of file HistoryObj.cpp.
{
static CLID CLID_HistoryObj = 86452397;
return CLID_HistoryObj;
}
| virtual const CLID& HistoryObj::clID |
( |
| ) |
const |
|
inlinevirtual |
| std::string HistoryObj::convert_string |
( |
const std::string & |
input_string | ) |
|
|
static |
Definition at line 29 of file HistoryObj.cpp.
{
std::string::const_iterator itr_string;
std::string modified_string;
for(itr_string=input_string.begin(); itr_string!=input_string.end(); itr_string++) {
if (*itr_string == '&') modified_string.append("&");
else if (*itr_string == '<') modified_string.append("<");
else if (*itr_string == '>') modified_string.append(">");
else if (*itr_string == '"') modified_string.append(""");
else if (*itr_string == '\'') modified_string.append("'");
else if (*itr_string == '\"') modified_string.append(""");
else modified_string+=*itr_string;
}
return modified_string;
}
| virtual void HistoryObj::dump |
( |
std::ostream & |
, |
|
|
const bool |
isXML = false, |
|
|
int |
indent = 0 |
|
) |
| const |
|
pure virtual |
| void HistoryObj::indent |
( |
std::ostream & |
ost, |
|
|
int |
i |
|
) |
| const |
|
protectedvirtual |
The documentation for this class was generated from the following files:
- /afs/.cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v25r2/GaudiKernel/GaudiKernel/HistoryObj.h
- /afs/.cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v25r2/GaudiKernel/src/Lib/HistoryObj.cpp
- /afs/.cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v25r2/GaudiKernel/src/Lib/VirtualDestructors.cpp