Skip to content
Snippets Groups Projects
Commit 6a8c1447 authored by John Chapman's avatar John Chapman
Browse files

Update other MuonPhaseII code to use central TruthUtils helper functions

parent d30e3d7a
No related branches found
No related tags found
No related merge requests found
Pipeline #11008871 passed
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
################################################################################
# Package: ActsMuonDetectorTest
......@@ -10,7 +10,7 @@ atlas_add_component( ActsMuonDetectorTest
src/components/*.cxx src/*.cxx
LINK_LIBRARIES AthenaKernel StoreGateLib GeoModelUtilities MuonTesterTreeLib
GaudiKernel MuonReadoutGeometryR4 MuonGeoModelR4Lib ActsGeometryLib AthenaPoolUtilities
xAODTruth xAODMuonSimHit CxxUtils)
xAODTruth xAODMuonSimHit CxxUtils TruthUtils)
atlas_add_test( testMuonDetectorNav
SCRIPT python -m ActsMuonDetectorTest.testMuonDetector
......
......@@ -18,6 +18,8 @@
#include "xAODTruth/TruthVertex.h"
#include "TruthUtils/HepMCHelpers.h"
#include <fstream>
using namespace Acts::UnitLiterals;
......@@ -145,7 +147,7 @@ namespace ActsTrk {
const Acts::Experimental::Detector* detector = m_detVolSvc->detector().get();
for(const auto truthParticle : *truthParticles){
//Require that we only propagate on muons, and of status 1
if(truthParticle->status() == 1 and truthParticle->pdgId() == 13){
if(MC::isStable(truthParticle) and truthParticle->pdgId() == MC::MUON){ // FIXME not antimuons?
const auto& particle = truthParticle->p4();
const auto& prodVertex = (!truthParticle->hasProdVtx()) ? nullptr : truthParticle->prodVtx();
double x = prodVertex ? prodVertex->x() : 0.;
......
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
################################################################################
# Package: MuonPatternRecognitionAlgs
################################################################################
......@@ -13,7 +13,7 @@ atlas_add_component( MuonPatternRecognitionAlgs
src/components/*.cxx src/*.cxx
LINK_LIBRARIES MuonVisualizationHelpersR4 MuonPatternEvent AthenaKernel StoreGateLib
xAODMuonPrepData MuonSpacePoint MuonPatternHelpers MuonRecToolInterfacesR4
MuonTruthHelpers )
MuonTruthHelpers TruthUtils )
# Install files from the package:
atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
......
/*
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
*/
#include "CombinatorialNSWSeedFinderAlg.h"
......@@ -15,7 +15,7 @@
#include "xAODMeasurementBase/UncalibratedMeasurement.h"
#include "xAODMuonPrepData/MMCluster.h"
#include "TruthUtils/HepMCHelpers.h"
#include <ranges>
#include <vector>
......@@ -279,7 +279,7 @@ CombinatorialNSWSeedFinderAlg::findSeedsFromMaximum(const HoughMaximum &max, con
for (const SpacePoint* sp : max.getHitsInMax()) {
const auto* mmClust = static_cast<const xAOD::MMCluster*>(sp->primaryMeasurement());
const xAOD::MuonSimHit* simHit = getTruthMatchedHit(*mmClust);
if (!simHit || std::abs(simHit->pdgId()) != 13) continue;
if (!simHit || !MC::isMuon(simHit)) continue;
const MuonGMR4::MmReadoutElement* reEle = mmClust->readoutElement();
const MuonGMR4::StripDesign& design = reEle->stripLayer(mmClust->measurementHash()).design();
const Amg::Transform3D toChamb = reEle->msSector()->globalToLocalTrans(gctx) *
......
......@@ -10,7 +10,7 @@ atlas_add_component( MuonTruthAlgsR4
src/components/*.cxx src/*.cxx
LINK_LIBRARIES xAODMuonSimHit AthenaBaseComps GaudiKernel xAODMuon MuonIdHelpersLib
MuonReadoutGeometryR4 xAODMuonPrepData MuonPatternEvent xAODMuonViews
TrkTruthData MuonTruthHelpers MuonRecHelperToolsLib)
TrkTruthData MuonTruthHelpers MuonRecHelperToolsLib TruthUtils)
# Install files from the package:
atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
/*
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
*/
#include "TruthSegmentMaker.h"
......@@ -18,6 +18,8 @@
#include "MuonPatternEvent/MuonHoughDefs.h"
#include "TruthUtils/HepMCHelpers.h"
#include "GaudiKernel/PhysicalConstants.h"
#include <unordered_map>
......@@ -90,7 +92,7 @@ namespace MuonR4{
genParticle = genLink.cptr();
}
/// skip empty truth matches for now
if (!genParticle || (m_useOnlyMuonHits && std::abs(simHit->pdgId()) != 13)) {
if (!genParticle || (m_useOnlyMuonHits && !MC::isMuon(simHit))) {
ATH_MSG_VERBOSE("Skip hit "<<m_idHelperSvc->toString(simHit->identify())<<
" pdgId: "<<simHit->pdgId()<<", energy: "<<simHit->kineticEnergy());
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment