From 73201ae60069274bb05211b849b0827946d5e74f Mon Sep 17 00:00:00 2001
From: Jan Strube <jan.strube@gmail.com>
Date: Tue, 15 Aug 2017 17:28:17 -0700
Subject: [PATCH] Update LCIO.py

---
 DDSim/Helper/LCIO.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/DDSim/Helper/LCIO.py b/DDSim/Helper/LCIO.py
index 4017c81a7..600062ae6 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
 
-- 
GitLab