ATLAS Offline Software
MuonSpectrometer/MuonReconstruction/MuonRecUtils/MuonLinearSegmentMakerUtilities/src/Cluster.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
10 #include <iostream>
11 
12 namespace ClusterSeg {
13 
14  Cluster::Cluster( double x_, double y_, double z_, bool isPhi_, Muon::MuonStationIndex::TechnologyIndex tIndex_, Muon::MuonStationIndex::PhiIndex pIndex_, bool isMatch_, int barcode_) : m_x(x_),m_y(y_),m_z(z_),m_isPhi(isPhi_),m_tIndex(tIndex_),m_pIndex(pIndex_),m_isMatch(isMatch_),m_barcode(barcode_),m_chamberId("") {}
15  Cluster::Cluster( double x_, double y_, double z_, bool isPhi_, int tIndex_, int pIndex_, bool isMatch_, int barcode_) : m_x(x_),m_y(y_),m_z(z_),m_isPhi(isPhi_),m_tIndex((Muon::MuonStationIndex::TechnologyIndex)tIndex_),m_pIndex((Muon::MuonStationIndex::PhiIndex)pIndex_),m_isMatch(isMatch_),m_barcode(barcode_) {}
16 
17  SpacePoint::SpacePoint( double eta_, double phi_, double z_, Muon::MuonStationIndex::TechnologyIndex tIndex_, Muon::MuonStationIndex::PhiIndex pIndex_, bool isMatch_, int barcode_, int eit_, int pit_) : m_eta(eta_),m_phi(phi_),m_z(z_),m_tIndex(tIndex_),m_pIndex(pIndex_),m_isMatch(isMatch_),m_barcode(barcode_),m_eit(eit_),m_pit(pit_) {}
18 
19 }
Muon
This class provides conversion from CSC RDO data to CSC Digits.
Definition: TrackSystemController.h:49
ClusterSeg::SpacePoint::SpacePoint
SpacePoint(double eta_, double phi_, double z_, Muon::MuonStationIndex::TechnologyIndex tIndex_, Muon::MuonStationIndex::PhiIndex pIndex_, bool isMatch_, int barcode_, int eit_, int pit_)
Definition: MuonSpectrometer/MuonReconstruction/MuonRecUtils/MuonLinearSegmentMakerUtilities/src/Cluster.cxx:17
Muon::MuonStationIndex::PhiIndex
PhiIndex
enum to classify the different phi layers in the muon spectrometer
Definition: MuonStationIndex.h:31
ClusterSeg
Definition: MuonSpectrometer/MuonReconstruction/MuonRecUtils/MuonLinearSegmentMakerUtilities/MuonLinearSegmentMakerUtilities/Cluster.h:12
ClusterSeg::Cluster::Cluster
Cluster(double x_, double y_, double z_, bool isPhi_, Muon::MuonStationIndex::TechnologyIndex tIndex_, Muon::MuonStationIndex::PhiIndex pIndex_, bool isMatch_, int barcode_)
Definition: MuonSpectrometer/MuonReconstruction/MuonRecUtils/MuonLinearSegmentMakerUtilities/src/Cluster.cxx:14
ClusterNtuple.h
Muon::MuonStationIndex::TechnologyIndex
TechnologyIndex
enum to classify the different layers in the muon spectrometer
Definition: MuonStationIndex.h:54