Skip to content
Snippets Groups Projects
Commit 73201ae6 authored by Jan Strube's avatar Jan Strube Committed by Andre Sailer
Browse files

Update LCIO.py

parent f5d5bcab
No related branches found
No related tags found
No related merge requests found
...@@ -6,15 +6,15 @@ class LCIO( Input ): ...@@ -6,15 +6,15 @@ class LCIO( Input ):
"""Configuration for the generator-level InputFiles""" """Configuration for the generator-level InputFiles"""
def __init__( self ): def __init__( self ):
super(LCIO, self).__init__() super(LCIO, self).__init__()
self._parameters["MCParticleCollectionName"] = "MCParticle" self._parameters["mcParticleCollectionName"] = "MCParticle"
@property @property
def mcParticleCollectionName( self ): def mcParticleCollectionName( self ):
"""Set the name of the collection containing the MCParticle input. """Set the name of the collection containing the MCParticle input.
Default is "MCParticle". Default is "MCParticle".
""" """
return self._parameters["MCParticleCollectionName"] return self._parameters["mcParticleCollectionName"]
@particlesPerEvent.setter @particlesPerEvent.setter
def particlesPerEvent( self, val ): def particlesPerEvent( self, val ):
self._parameters["MCParticleCollectionName"] = val self._parameters["mcParticleCollectionName"] = val
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment