diff --git a/DDG4/python/DDSim/DD4hepSimulation.py b/DDG4/python/DDSim/DD4hepSimulation.py
index ddc7b93a509d2a1c780f22429be0efa111d2b300..5a2760ada8015a63e488b4941f26a5191e8b1a05 100644
--- a/DDG4/python/DDSim/DD4hepSimulation.py
+++ b/DDG4/python/DDSim/DD4hepSimulation.py
@@ -347,6 +347,24 @@ class DD4hepSimulation(object):
     # configure geometry creation
     self.geometry.constructGeometry(kernel, geant4, self.output.geometry)
 
+    # ----------------------------------------------------------------------------------
+    # Configure run, event, track, step actions, if present
+    for action_name in self.action.run:
+        action = DDG4.RunAction(kernel, action_name)
+        kernel.runAction().add(action)
+    for action_name in self.action.event:
+        action = DDG4.EventAction(kernel, action_name)
+        kernel.eventAction().add(action)
+    for action_name in self.action.track:
+        action = DDG4.TrackingAction(kernel, action_name)
+        kernel.trackingAction().add(action)
+    for action_name in self.action.step:
+        action = DDG4.SteppingAction(kernel, action_name)
+        kernel.steppingAction().add(action)
+    for action_name in self.action.stack:
+        action = DDG4.StackingAction(kernel, action_name)
+        kernel.stackingAction().add(action)
+
     # ----------------------------------------------------------------------------------
     # Configure Run actions
     run1 = DDG4.RunAction(kernel, 'Geant4TestRunAction/RunInit')
diff --git a/DDG4/python/DDSim/Helper/Action.py b/DDG4/python/DDSim/Helper/Action.py
index b84c3f70d9b966590442cd0f6c9a8689eb6792c2..b6174070bb45ab96989d5dc2576d34558043a4a4 100644
--- a/DDG4/python/DDSim/Helper/Action.py
+++ b/DDG4/python/DDSim/Helper/Action.py
@@ -5,9 +5,9 @@ from DDSim.Helper.ConfigHelper import ConfigHelper
 
 
 class Action(ConfigHelper):
-  """Helper holding sensitive detector actions.
+  """Helper holding sensitive detector and other actions.
 
-  The default tracker and calorimeter actions can be set with
+  The default tracker and calorimeter sensitive actions can be set with
 
   >>> SIM = DD4hepSimulation()
   >>> SIM.action.tracker=('Geant4TrackerWeightedAction', {'HitPositionCombination': 2, 'CollectSingleDeposits': False})
@@ -30,6 +30,15 @@ class Action(ConfigHelper):
   >>> SIM = DD4hepSimulation()
   >>> SIM.action.mapActions['ecal'] =( "CaloPreShowerSDAction", {"FirstLayerNumber": 1} )
 
+  Additional actions can be set as well with
+
+  >>> SIM = DD4hepSimulation()
+  >>> SIM.action.run = "Geant4TestRunAction"
+  >>> SIM.action.event = "Geant4TestEventAction"
+  >>> SIM.action.track = "Geant4TestTrackAction"
+  >>> SIM.action.step = "Geant4TestStepAction"
+  >>> SIM.action.stack = "Geant4TestStackAction"
+
   """
 
   def __init__(self):
@@ -39,6 +48,11 @@ class Action(ConfigHelper):
     self._mapActions = dict()
     self._trackerSDTypes = ['tracker']
     self._calorimeterSDTypes = ['calorimeter']
+    self._run = []
+    self._event = []
+    self._track = []
+    self._step = []
+    self._stack = []
     self._closeProperties()
 
   @property
@@ -108,3 +122,49 @@ class Action(ConfigHelper):
   @calorimeterSDTypes.setter
   def calorimeterSDTypes(self, val):
     self._calorimeterSDTypes = ConfigHelper.makeList(val)
+
+  @property
+  def run(self):
+    """ set the default run action """
+    return self._run
+
+  @run.setter
+  def run(self, val):
+    self._run = ConfigHelper.makeList(val)
+
+  @property
+  def event(self):
+    """ set the default event action """
+    return self._event
+
+  @event.setter
+  def event(self, val):
+    self._event = ConfigHelper.makeList(val)
+
+  @property
+  def track(self):
+    """ set the default track action """
+    return self._track
+
+  @track.setter
+  def track(self, val):
+    self._track = ConfigHelper.makeList(val)
+
+  @property
+  def step(self):
+    """ set the default step action """
+    return self._step
+
+  @step.setter
+  def step(self, val):
+    self._step = ConfigHelper.makeList(val)
+
+  @property
+  def stack(self):
+    """ set the default stack action """
+    return self._stack
+
+  @stack.setter
+  def stack(self, val):
+    self._stack = ConfigHelper.makeList(val)
+