Skip to content
Snippets Groups Projects
Commit a651b06e authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

WIP: show the simulator status.

parent 94a8dcd8
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
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