Gaudi Framework, version v22r2

Home   Generated: Tue May 10 2011
Classes | Functions

JobHistory.h File Reference

#include "GaudiKernel/HistoryObj.h"
#include <string>
#include <vector>
#include <utility>
#include <iosfwd>
#include <ctime>
Include dependency graph for JobHistory.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  JobHistory
 JobHistory class definition. More...

Functions

GAUDI_API std::ostreamoperator<< (std::ostream &lhs, const JobHistory &rhs)

Function Documentation

GAUDI_API std::ostream& operator<< ( std::ostream lhs,
const JobHistory rhs 
)

Definition at line 98 of file JobHistory.cpp.

                                                         {
  lhs << "Release: " << rhs.release_version() << endl;
  lhs << "OS:      " << rhs.os() << endl;
  lhs << "OS ver:  " << rhs.os_version() << endl;
  lhs << "Host:    " << rhs.hostname() << endl;
  lhs << "Machine: " << rhs.machine() << endl;
  lhs << "Run dir: " << rhs.dir() << endl;
  lhs << "CMTCONFIG: " << rhs.cmtconfig() << endl;
  lhs << "Job start time: " << rhs.start_time() << endl << endl;
  lhs << "Properties: [" << endl;;
  for ( JobHistory::PropertyList::const_iterator
        ipprop=rhs.properties().begin();
        ipprop!=rhs.properties().end(); ++ipprop ) {
     std::string client = ipprop->first;
     const Property* prop = ipprop->second;
     lhs << client << ":  ";
     prop->fillStream(lhs);
     lhs << endl;
  }
  lhs << "]" << endl;
  vector<string> env = rhs.environment();
  for (vector<string>::const_iterator itr=env.begin();  itr != env.end(); 
       ++itr) {
    lhs << *itr << endl;
  }
  return lhs;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

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