ATLAS Offline Software
Loading...
Searching...
No Matches
AthMonBench.cxx File Reference
#include "AthMonBench.h"
#include <iostream>
#include <limits>
#include <string>
#include <fstream>
Include dependency graph for AthMonBench.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const AthMonBench &br)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & os,
const AthMonBench & br )

Definition at line 37 of file AthMonBench.cxx.

37 {
38 if (br.valid())
39 os << "deltaMem: "<<br.deltaMem_mb()<<" mb, deltaCPU: "<<br.deltaCPU_ms()<<" ms";
40 else
41 os <<" [no data]";
42 return os;
43}