From 892f17b8dbdfaa5537add56af35636ee10d65d45 Mon Sep 17 00:00:00 2001
From: Andre Sailer <andre.philippe.sailer@cern.ch>
Date: Fri, 18 Sep 2020 17:53:40 +0200
Subject: [PATCH] HepEvtReader: fix time units (mm/c)

---
 DDG4/plugins/Geant4EventReaderHepEvt.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/DDG4/plugins/Geant4EventReaderHepEvt.cpp b/DDG4/plugins/Geant4EventReaderHepEvt.cpp
index ba02c49d4..dad1a0ce1 100644
--- a/DDG4/plugins/Geant4EventReaderHepEvt.cpp
+++ b/DDG4/plugins/Geant4EventReaderHepEvt.cpp
@@ -257,8 +257,8 @@ Geant4EventReaderHepEvt::readParticles(int /* event_number */,
     p->vez = 0.0;
     //
     //  Creation time (note the units [1/c_light])
-    p->time       = VHEP4*CLHEP::ns;
-    p->properTime = VHEP4*CLHEP::ns;
+    p->time       = VHEP4 * CLHEP::mm / CLHEP::c_light;
+    p->properTime = VHEP4 * CLHEP::mm / CLHEP::c_light;
     //
     //  Generator status
     //  Simulator status 0 until simulator acts on it
-- 
GitLab