From 93b221c58ac9ac49ca4f66bc709840c169c83ef6 Mon Sep 17 00:00:00 2001 From: lintao <lintao51@gmail.com> Date: Tue, 20 Dec 2022 11:12:17 +0800 Subject: [PATCH] WIP: print all hits --- Analysis/DumpEvent/src/DumpSimHitAlg.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Analysis/DumpEvent/src/DumpSimHitAlg.cpp b/Analysis/DumpEvent/src/DumpSimHitAlg.cpp index 1a1500fa..5c9a3d1f 100644 --- a/Analysis/DumpEvent/src/DumpSimHitAlg.cpp +++ b/Analysis/DumpEvent/src/DumpSimHitAlg.cpp @@ -54,7 +54,18 @@ StatusCode DumpSimHitAlg::execute() { auto vxdCol = m_VXDCol.get(); for (auto hit: *vxdCol) { - + auto mcparticle = hit.getMCParticle(); + + if (mcparticle.getGeneratorStatus() != 1) { + error() << "Found generator status is not 1 for hit. " << endmsg; + } + + info() << "hit -> " + << " mcparticle (" + << " ID: " << mcparticle.getObjectID().index << "; " + << " generator status: " << mcparticle.getGeneratorStatus() << "; " + << " simulator status: " << mcparticle.getSimulatorStatus() << ") " + << endmsg; } return StatusCode::SUCCESS; -- GitLab