|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
#include "GaudiKernel/HistoryObj.h"#include <string>#include <vector>

Go to the source code of this file.
Classes | |
| class | AlgToolHistory |
| AlgToolHistory class definition. More... | |
Functions | |
| GAUDI_API std::ostream & | operator<< (std::ostream &lhs, const AlgToolHistory &rhs) |
| GAUDI_API std::ostream& operator<< | ( | std::ostream & | lhs, |
| const AlgToolHistory & | rhs | ||
| ) |
Definition at line 61 of file AlgToolHistory.cpp.
{
lhs << "Type: " << rhs.algtool_type() << endl;
lhs << "Name: " << rhs.algtool_name() << endl;
lhs << "Version: " << rhs.algtool_version() << endl;
lhs << "Parent: " << rhs.algtool_instance()->name() << endl;
// Properties.
lhs << "Properties: [" << endl;;
for ( AlgToolHistory::PropertyList::const_iterator
ipprop=rhs.properties().begin();
ipprop!=rhs.properties().end(); ++ipprop ) {
const Property& prop = **ipprop;
prop.fillStream(lhs);
lhs << endl;
}
lhs << "]" << endl;
return lhs;
}