ATLAS Offline Software
Loading...
Searching...
No Matches
L2IsoMuon_v1.h File Reference
#include <stdint.h>
#include <iosfwd>
#include "xAODBase/IParticle.h"
#include "Math/Vector4D.h"
Include dependency graph for L2IsoMuon_v1.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  xAOD::L2IsoMuon_v1
 Class describing isolation info for muons reconstructed in the LVL2 trigger. More...

Namespaces

namespace  xAOD
 ICaloAffectedTool is abstract interface for tools checking if 4 mom is in calo affected region.

Functions

std::ostream & operator<< (std::ostream &out, const xAOD::L2IsoMuon_v1 &mu)
 Operator for printing the contents of a LVL2 muon.

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & out,
const xAOD::L2IsoMuon_v1 & mu )

Operator for printing the contents of a LVL2 muon.

Operator for printing the contents of a LVL2 muon.

Definition at line 133 of file L2IsoMuon_v1.cxx.

134 {
135
136 out << "roiWord: " << mu.roiWord() << "; ";
137 out << "charge: " << mu.charge() << "; ";
138 out << "pt: " << mu.pt() << "; ";
139 out << "phi: " << mu.phi() << "; ";
140 out << "eta: " << mu.eta() << "; ";
141 out << "errorFlag: " << mu.errorFlag() << "; ";
142 out << "sumPt01: " << mu.sumPt01() << "; ";
143 out << "sumPt02: " << mu.sumPt02() << "; ";
144 out << "sumPt03: " << mu.sumPt03() << "; ";
145 out << "sumPt04: " << mu.sumPt04() << "; ";
146 out << "sumEt01: " << mu.sumEt01() << "; ";
147 out << "sumEt02: " << mu.sumEt02() << "; ";
148 out << "sumEt03: " << mu.sumEt03() << "; ";
149 out << "sumEt04: " << mu.sumEt04();
150
151 // Return the stream:
152 return out;
153}