ATLAS Offline Software
Loading...
Searching...
No Matches
StripData.cxx
Go to the documentation of this file.
1/*
2 * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4#include "StripData.h"
5#include <ostream>
6
7
8std::ostream& operator<<(std::ostream& os,
9 const GlobalSim::StripData& sd) {
10
11 os << "StripData eta: " << sd.m_eta
12 << " phi " << sd.m_phi
13 << " e " << sd.m_e;
14 return os;
15}
std::ostream & operator<<(std::ostream &os, const GlobalSim::StripData &sd)
Definition StripData.cxx:8