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

Go to the source code of this file.

Classes

class  xAOD::L2StandAloneMuon_v2
 Class describing standalone 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::L2StandAloneMuon_v2 &mu)
 Operator for printing the contents of a LVL2 muon.

Function Documentation

◆ operator<<()

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

Operator for printing the contents of a LVL2 muon.

Operator for printing the contents of a LVL2 muon.

Definition at line 1764 of file L2StandAloneMuon_v2.cxx.

1765 {
1766
1767 out << "roiWord: " << mu.roiWord() << "; ";
1768 out << "sAddress: " << mu.sAddress() << "; ";
1769 out << "pt: " << mu.pt() << "; ";
1770 out << "phi: " << mu.phi() << "; ";
1771 out << "eta: " << mu.eta() << "; ";
1772 out << "rMS: " << mu.rMS() << "; ";
1773 out << "etaMS: " << mu.etaMS() << "; ";
1774 out << "phiMS: " << mu.phiMS() << "; ";
1775 out << "dirPhiMS: " << mu.dirPhiMS() << "; ";
1776 out << "zMS: " << mu.zMS() << "; ";
1777 out << "dirZMS: " << mu.dirZMS() << "; ";
1778 out << "beta: " << mu.beta() << "; ";
1779 out << "barrelRadius: " << mu.barrelRadius() << "; ";
1780 out << "barrelSagitta: " << mu.barrelSagitta() << "; ";
1781 out << "endcapAlpha: " << mu.endcapAlpha() << "; ";
1782 out << "endcapBeta: " << mu.endcapBeta() << "; ";
1783 out << "endcapRadius: " << mu.endcapRadius() << "; ";
1784 out << "etaMap: " << mu.etaMap() << "; ";
1785 out << "phiMap: " << mu.phiMap() << "; ";
1786 out << "etaBin: " << mu.etaBin() << "; ";
1787 out << "phiBin: " << mu.phiBin() << "; ";
1788 out << "isTgcFailure: " << mu.isTgcFailure() << "; ";
1789 out << "isRpcFailure: " << mu.isRpcFailure() << "; ";
1790 out << "deltaPt: " << mu.deltaPt() << "; ";
1791 out << "deltaEta: " << mu.deltaEta() << "; ";
1792 out << "deltaPhi: " << mu.deltaPhi() << "; ";
1793 out << "algoId: " << mu.algoId() << "; ";
1794 out << "teId: " << mu.teId() << "; ";
1795 out << "lvl1Id: " << mu.lvl1Id() << "; ";
1796 out << "lumiBlock: " << mu.lumiBlock() << "; ";
1797 out << "muonDetMask: " << mu.muonDetMask() << "; ";
1798 out << "roiId: " << mu.roiId() << "; ";
1799 out << "roiSystem: " << mu.roiSystem() << "; ";
1800 out << "roiSubsystem: " << mu.roiSubsystem() << "; ";
1801 out << "roiSector: " << mu.roiSector() << "; ";
1802 out << "roiNumber: " << mu.roiNumber() << "; ";
1803 out << "roiThreshold: " << mu.roiThreshold() << "; ";
1804 out << "roiEta: " << mu.roiEta() << "; ";
1805 out << "roiPhi: " << mu.roiPhi() << "; ";
1806 out << "rpcHitsCapacity: " << mu.rpcHitsCapacity() << "; ";
1807 out << "tgcHitsCapacity: " << mu.tgcHitsCapacity() << "; ";
1808 out << "mdtHitsCapacity: " << mu.mdtHitsCapacity() << "; ";
1809 out << "cscHitsCapacity: " << mu.cscHitsCapacity() << "; ";
1810
1811 // Return the stream:
1812 return out;
1813}