diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fdedb720..e0b510e3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ it in future. * Tof calculation corrected in GenieGenerator.cxx, wrong units previously used. * Genfit measurements now give the correct detector ID * Fix TEvePointSetPrintOut +* Event Display: Fix drawing of MC and Geo tracks ### Changed diff --git a/macro/eventDisplay.py b/macro/eventDisplay.py index e9fe23991..6db5dc0a5 100644 --- a/macro/eventDisplay.py +++ b/macro/eventDisplay.py @@ -1319,8 +1319,8 @@ def debugStraw(n): # ----------------------Tracks and points ------------------------------------- verbose = 0 # 3 lot of output if withGeo: - Track = ROOT.FairMCTracks("Monte-Carlo Tracks", verbose) - GTrack = ROOT.FairMCTracks("GeoTracks", verbose) + Track = ROOT.FairMCTracksDraw("Monte-Carlo Tracks") + GTrack = ROOT.FairGeoTracksDraw("GeoTracks") fMan.AddTask(GTrack) fMan.AddTask(Track)