ATLAS Offline Software
Loading...
Searching...
No Matches
SimpleJetStream.cxx File Reference
#include "./SimpleJetStream.h"
#include <ostream>
#include <ios>
Include dependency graph for SimpleJetStream.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const SimpleJetStream &js)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & os,
const SimpleJetStream & js )

Definition at line 9 of file SimpleJetStream.cxx.

10 {
11
12 os << "SimpleJetStream id " << js.m_id
13 << " m_valid " << std::boolalpha << js.m_valid
14 << " no of jets: " << js.m_jets.size()
15 << " m_ind " << js.m_ind;
16 return os;
17}