ATLAS Offline Software
MuonTubeIntersect.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef MUON_MUONTUBEINTERSECT_H
6 #define MUON_MUONTUBEINTERSECT_H
7 
8 #include "Identifier/Identifier.h"
9 
10 namespace Muon {
11 
13  MuonTubeIntersect(const Identifier& id, double rint, double xint) : tubeId(id), rIntersect(rint), xIntersect(xint) {}
15  double rIntersect{0.}; // distance to wall in precision plane
16  double xIntersect{0.}; // distance to tube end
17  };
18 
19 } // namespace Muon
20 
21 #endif
Muon::MuonTubeIntersect
Definition: MuonTubeIntersect.h:12
Muon
This class provides conversion from CSC RDO data to CSC Digits.
Definition: TrackSystemController.h:49
Identifier
Definition: DetectorDescription/Identifier/Identifier/Identifier.h:32
Muon::MuonTubeIntersect::tubeId
Identifier tubeId
Definition: MuonTubeIntersect.h:14
id
SG::auxid_t id
Definition: Control/AthContainers/Root/debug.cxx:194
Muon::MuonTubeIntersect::xIntersect
double xIntersect
Definition: MuonTubeIntersect.h:16
Muon::MuonTubeIntersect::rIntersect
double rIntersect
Definition: MuonTubeIntersect.h:15
Muon::MuonTubeIntersect::MuonTubeIntersect
MuonTubeIntersect(const Identifier &id, double rint, double xint)
Definition: MuonTubeIntersect.h:13