ATLAS Offline Software
Loading...
Searching...
No Matches
SimpleJetStream.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "./SimpleJetStream.h"
6#include <ostream>
7#include <ios> //for std::boolalpha
8
9std::ostream& operator << (std::ostream& os ,
10 const SimpleJetStream& js) {
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}
18
std::ostream & operator<<(std::ostream &os, const SimpleJetStream &js)
SimpleJetStream(const std::vector< std::size_t > &jets, std::unique_ptr< IJetStream > neigh, std::size_t id)