ATLAS Offline Software
Loading...
Searching...
No Matches
SimpleJetStream.h File Reference
#include "IJetStream.h"
#include <sstream>
#include <vector>
#include <memory>
#include <string>
Include dependency graph for SimpleJetStream.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  SimpleJetStream

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 31 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}