diff --git a/Analysis/DumpEvent/src/DumpSimHitAlg.cpp b/Analysis/DumpEvent/src/DumpSimHitAlg.cpp
index 5c9a3d1f22f99b75f7d4e987e4befa9e5066e30e..9ea53b5fb0e6f0596a3215a4433f3f623001b11d 100644
--- a/Analysis/DumpEvent/src/DumpSimHitAlg.cpp
+++ b/Analysis/DumpEvent/src/DumpSimHitAlg.cpp
@@ -51,6 +51,13 @@ StatusCode DumpSimHitAlg::initialize() {
 StatusCode DumpSimHitAlg::execute() {
     auto mcCol = m_mcParCol.get();
 
+    for (auto particle: *mcCol) {
+        info() << "mc particle -> "
+               << " (ID: " << particle.getObjectID().index << ") "
+               << " (simulator status: " << particle.getSimulatorStatus() << ") "
+               << endmsg;
+    }
+
     auto vxdCol = m_VXDCol.get();
 
     for (auto hit: *vxdCol) {