ATLAS Offline Software
Loading...
Searching...
No Matches
FPGATrackSimTrackPars.cxx File Reference
#include "FPGATrackSimObjects/FPGATrackSimTrackPars.h"
#include <stdexcept>
Include dependency graph for FPGATrackSimTrackPars.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const FPGATrackSimTrackPars &pars)
std::ostream & operator<< (std::ostream &os, const FPGATrackSimTrackParsI &pars)

Function Documentation

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream & os,
const FPGATrackSimTrackPars & pars )

Definition at line 85 of file FPGATrackSimTrackPars.cxx.

86{
87 os << "phi:" << pars.phi
88 << " q/pt:" << pars.qOverPt
89 << " d0:" << pars.d0
90 << " z0:" << pars.z0
91 << " eta:" << pars.eta;
92 return os;
93}

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const FPGATrackSimTrackParsI & pars )

Definition at line 95 of file FPGATrackSimTrackPars.cxx.

96{
97 os << "phi:" << pars.phi
98 << " q/pt:" << pars.qOverPt
99 << " d0:" << pars.d0
100 << " z0:" << pars.z0
101 << " eta:" << pars.eta;
102 return os;
103}