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

Go to the source code of this file.

Classes

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

Function Documentation

◆ operator<<()

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

Operator for printing the contents of a LVL2 muon.

Operator for printing the contents of a LVL2 muon.

Definition at line 1796 of file L2StandAloneMuon_v1.cxx.

1797 {
1798
1799 out << "roiWord: " << mu.roiWord() << "; ";
1800 out << "sAddress: " << mu.sAddress() << "; ";
1801 out << "pt: " << mu.pt() << "; ";
1802 out << "phi: " << mu.phi() << "; ";
1803 out << "eta: " << mu.eta() << "; ";
1804 out << "rMS: " << mu.rMS() << "; ";
1805 out << "etaMS: " << mu.etaMS() << "; ";
1806 out << "phiMS: " << mu.phiMS() << "; ";
1807 out << "dirPhiMS: " << mu.dirPhiMS() << "; ";
1808 out << "zMS: " << mu.zMS() << "; ";
1809 out << "dirZMS: " << mu.dirZMS() << "; ";
1810 out << "beta: " << mu.beta() << "; ";
1811 out << "barrelRadius: " << mu.barrelRadius() << "; ";
1812 out << "barrelSagitta: " << mu.barrelSagitta() << "; ";
1813 out << "endcapAlpha: " << mu.endcapAlpha() << "; ";
1814 out << "endcapBeta: " << mu.endcapBeta() << "; ";
1815 out << "endcapRadius: " << mu.endcapRadius() << "; ";
1816 out << "etaMap: " << mu.etaMap() << "; ";
1817 out << "phiMap: " << mu.phiMap() << "; ";
1818 out << "etaBin: " << mu.etaBin() << "; ";
1819 out << "phiBin: " << mu.phiBin() << "; ";
1820 out << "isTgcFailure: " << mu.isTgcFailure() << "; ";
1821 out << "isRpcFailure: " << mu.isRpcFailure() << "; ";
1822 out << "deltaPt: " << mu.deltaPt() << "; ";
1823 out << "deltaEta: " << mu.deltaEta() << "; ";
1824 out << "deltaPhi: " << mu.deltaPhi() << "; ";
1825 out << "algoId: " << mu.algoId() << "; ";
1826 out << "teId: " << mu.teId() << "; ";
1827 out << "lvl1Id: " << mu.lvl1Id() << "; ";
1828 out << "lumiBlock: " << mu.lumiBlock() << "; ";
1829 out << "muonDetMask: " << mu.muonDetMask() << "; ";
1830 out << "roiId: " << mu.roiId() << "; ";
1831 out << "roiSystem: " << mu.roiSystem() << "; ";
1832 out << "roiSubsystem: " << mu.roiSubsystem() << "; ";
1833 out << "roiSector: " << mu.roiSector() << "; ";
1834 out << "roiNumber: " << mu.roiNumber() << "; ";
1835 out << "roiThreshold: " << mu.roiThreshold() << "; ";
1836 out << "roiEta: " << mu.roiEta() << "; ";
1837 out << "roiPhi: " << mu.roiPhi() << "; ";
1838 out << "extensionCapacity: " << mu.extensionCapacity() << "; ";
1839 out << "robCapacity: " << mu.robCapacity() << "; ";
1840 out << "csmCapacity: " << mu.csmCapacity() << "; ";
1841 out << "lvl1EmuCapacity: " << mu.lvl1EmuCapacity() << "; ";
1842 out << "rpcHitsCapacity: " << mu.rpcHitsCapacity() << "; ";
1843 out << "tgcHitsCapacity: " << mu.tgcHitsCapacity() << "; ";
1844 out << "mdtHitsCapacity: " << mu.mdtHitsCapacity() << "; ";
1845
1846 // Return the stream:
1847 return out;
1848}