Gaudi Framework, version v22r2

Home   Generated: Tue May 10 2011
Functions

AlgToolHistory.cpp File Reference

#include "GaudiKernel/AlgToolHistory.h"
#include "GaudiKernel/JobHistory.h"
#include "GaudiKernel/AlgTool.h"
#include <iostream>
Include dependency graph for AlgToolHistory.cpp:

Go to the source code of this file.

Functions

ostreamoperator<< (ostream &lhs, const AlgToolHistory &rhs)

Function Documentation

ostream& operator<< ( 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;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Tue May 10 2011 18:54:24 for Gaudi Framework, version v22r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004