LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
sumdata Namespace Reference

Classes

class  POTSummary
 
class  RunData
 

Functions

template<typename Stream >
Stream & operator<< (Stream &&o, POTSummary const &a)
 

Function Documentation

template<typename Stream >
Stream & sumdata::operator<< ( Stream &&  o,
POTSummary const &  a 
)

Definition at line 37 of file POTSummary.h.

References sumdata::POTSummary::goodspills, sumdata::POTSummary::totgoodpot, sumdata::POTSummary::totpot, and sumdata::POTSummary::totspills.

38 {
39  o << "This sub run has " << a.totspills
40  << " total spills with an exposure of " << a.totpot << " POT"
41  <<"\n with cuts on beam quality, there are " << a.goodspills
42  << " good spills with an exposure of " << a.totgoodpot
43  << "\n";
44 
45  return o;
46 } // sumdata::operator<< (POTSummary)