diff --git a/DDSim/Helper/LCIO.py b/DDSim/Helper/LCIO.py index 4017c81a739d00e0471e6601b63787c5d1d137d6..600062ae697f908379b0191c9d874fab68c7cfdc 100644 --- a/DDSim/Helper/LCIO.py +++ b/DDSim/Helper/LCIO.py @@ -6,15 +6,15 @@ class LCIO( Input ): """Configuration for the generator-level InputFiles""" def __init__( self ): super(LCIO, self).__init__() - self._parameters["MCParticleCollectionName"] = "MCParticle" + self._parameters["mcParticleCollectionName"] = "MCParticle" @property def mcParticleCollectionName( self ): """Set the name of the collection containing the MCParticle input. Default is "MCParticle". """ - return self._parameters["MCParticleCollectionName"] + return self._parameters["mcParticleCollectionName"] @particlesPerEvent.setter def particlesPerEvent( self, val ): - self._parameters["MCParticleCollectionName"] = val + self._parameters["mcParticleCollectionName"] = val