ATLAS Offline Software
Loading...
Searching...
No Matches
StripData.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4
5#ifndef GLOBALSIM_STRIPDATA_H
6#define GLOBALSIM_STRIPDATA_H
7
8#include <iosfwd>
9
10/* Struct to carry et data for LAr strips consumned by various GlobalSim
11* Algorithms
12*/
13
14namespace GlobalSim {
15
16 struct StripData{
17 StripData() = default;
18 StripData(double eta, double phi, double e):
19 m_eta{eta}, m_phi{phi}, m_e{e}{}
20 double m_eta{0.};
21 double m_phi{0.};
22 double m_e{0.};
23 };
24
25}
26
27std::ostream& operator<<(std::ostream&, const GlobalSim::StripData&);
28
29#endif
30
31
32
33
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
std::ostream & operator<<(std::ostream &, const GlobalSim::StripData &)
Definition StripData.cxx:8
AlgTool that to test whether expected the TIP values generated by data supplied by eEmMultTestBench c...
StripData(double eta, double phi, double e)
Definition StripData.h:18