From 52e506984042a08b16a33757ded023907f437bcd Mon Sep 17 00:00:00 2001
From: Frank Gaede <frank.gaede@desy.de>
Date: Thu, 7 Sep 2017 13:29:47 +0200
Subject: [PATCH] mv mcParticleCollectionName MCParticleCollectionName

---
 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 802407859..fa66d9329 100644
--- a/DDSim/Helper/LCIO.py
+++ b/DDSim/Helper/LCIO.py
@@ -6,16 +6,16 @@ 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"]
   
   @mcParticleCollectionName.setter
   def mcParticleCollectionName( self, val ):
-    self._parameters["mcParticleCollectionName"] = val
+    self._parameters["MCParticleCollectionName"] = val
 
-- 
GitLab