Loading [MathJax]/extensions/MathMenu.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
SpacePointPerLayerSplitter.cxx
Go to the documentation of this file.
1 
2 /*
3  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
4 */
9 
10 namespace MuonR4 {
12  inline HitVec stripSmartPtr(const SpacePointBucket& bucket) {
13  HitVec hits{};
14  hits.reserve(bucket.size());
15  std::transform(bucket.begin(),bucket.end(),std::back_inserter(hits),
16  [](const SpacePointBucket::value_type& hit){return hit.get();});
17  return hits;
18  }
21 
23  if (hits.empty()) return;
24 
25  const Muon::IMuonIdHelperSvc* idHelperSvc {hits.front()->msSector()->idHelperSvc()};
26  const MdtIdHelper& idHelper {idHelperSvc->mdtIdHelper()};
27  SpacePointPerLayerSorter laySorter{idHelperSvc};
28 
29  HitVec::const_iterator itr = hits.begin();
30 
31  while (itr != hits.end()) {
32  const Identifier refId = laySorter.detectorLayerId((*itr)->identify());
33 
34  HitVec::const_iterator end_insert = std::find_if(itr, hits.end(),[&refId,&laySorter](const SpacePoint* testMe) {
35  return refId != laySorter.detectorLayerId(testMe->identify());
36  });
37 
38  const bool isMdt = (*itr)->type() == xAOD::UncalibMeasType::MdtDriftCircleType;
39  HitLayVec& pushMe{ isMdt ? m_mdtLayers : m_stripLayers};
40  if (isMdt && !pushMe.empty()){
41  if (idHelper.multilayer((*itr)->identify()) != idHelper.multilayer(pushMe.back().front()->identify())) {
42  m_tubeLaySwitch = pushMe.size();
43  }
44  }
45 
46  (isMdt ? m_nMdtHits : m_nStripHits) += pushMe.emplace_back(itr, end_insert).size();
47  itr = end_insert;
48  }
49  }
50 }
TRTCalib_Extractor.hits
hits
Definition: TRTCalib_Extractor.py:35
MuonR4::SpacePointPerLayerSplitter
The SpacePointPerLayerSplitter takes a set of spacepoints already sorted by layer Identifier (see Muo...
Definition: SpacePointPerLayerSplitter.h:16
MuonR4::SpacePointBucket
: The muon space point bucket represents a collection of points that will bre processed together in t...
Definition: MuonSpectrometer/MuonPhaseII/Event/MuonSpacePoint/MuonSpacePoint/SpacePointContainer.h:21
MuonR4::SpacePointPerLayerSorter
The SpacePointPerLayerSorter sort two given space points by their layer Identifier.
Definition: SpacePointPerLayerSorter.h:18
MuonR4::SpacePointPerLayerSplitter::HitLayVec
std::vector< HitVec > HitLayVec
Definition: SpacePointPerLayerSplitter.h:19
MuonR4::stripSmartPtr
HitVec stripSmartPtr(const SpacePointBucket &bucket)
Definition: SpacePointPerLayerSplitter.cxx:12
MuonR4::SpacePointPerLayerSplitter::HitVec
std::vector< const SpacePoint * > HitVec
Definition: SpacePointPerLayerSplitter.h:18
SpacePointPerLayerSplitter.h
MuonR4::SpacePointPerLayerSplitter::m_nMdtHits
unsigned int m_nMdtHits
Number of all Mdt tube hits
Definition: SpacePointPerLayerSplitter.h:50
MuonR4::SpacePointPerLayerSplitter::m_nStripHits
unsigned int m_nStripHits
Number of all strip hits.
Definition: SpacePointPerLayerSplitter.h:52
Amg::transform
Amg::Vector3D transform(Amg::Vector3D &v, Amg::Transform3D &tr)
Transform a point from a Trasformation3D.
Definition: GeoPrimitivesHelpers.h:156
MdtIdHelper
Definition: MdtIdHelper.h:61
MdtIdHelper.h
MuonR4::SpacePointPerLayerSplitter::m_tubeLaySwitch
unsigned int m_tubeLaySwitch
Index of the first tube-layer from the second multilayer.
Definition: SpacePointPerLayerSplitter.h:54
MuonR4::SpacePoint
The muon space point is the combination of two uncalibrated measurements one of them measures the eta...
Definition: MuonSpectrometer/MuonPhaseII/Event/MuonSpacePoint/MuonSpacePoint/SpacePoint.h:18
MuonR4::SpacePointPerLayerSplitter::m_stripLayers
HitLayVec m_stripLayers
Sorted Strip hits per gasGap strip
Definition: SpacePointPerLayerSplitter.h:48
MuonR4::SpacePointPerLayerSplitter::m_mdtLayers
HitLayVec m_mdtLayers
Sorted Mdt hits per tube layer.
Definition: SpacePointPerLayerSplitter.h:46
MuonR4::HitVec
SpacePointPerLayerSplitter::HitVec HitVec
Definition: SpacePointPerLayerSplitter.cxx:11
MuonR4
This header ties the generic definitions in this package.
Definition: HoughEventData.h:16
Muon::IMuonIdHelperSvc
Interface for Helper service that creates muon Identifiers and can be used to print Identifiers.
Definition: IMuonIdHelperSvc.h:27
MuonR4::SpacePointPerLayerSplitter::SpacePointPerLayerSplitter
SpacePointPerLayerSplitter(const SpacePointBucket &bucket)
Constructor taking a complete bucket
Definition: SpacePointPerLayerSplitter.cxx:19
xAOD::UncalibMeasType::MdtDriftCircleType
@ MdtDriftCircleType
SpacePointPerLayerSorter.h
IMuonIdHelperSvc.h
Identifier
Definition: IdentifierFieldParser.cxx:14