Skip to content
Snippets Groups Projects
LCIO.py 670 B
Newer Older
"""Helper object for files containing one or more MCParticle collections"""

from DDSim.Helper.Input import Input

Jan Strube's avatar
Jan Strube committed
class LCIO( Input ):
  """Configuration for the generator-level InputFiles"""
  def __init__( self ):
Jan Strube's avatar
Jan Strube committed
    super(LCIO, self).__init__()
Jan Strube's avatar
Jan Strube committed
    self._parameters["mcParticleCollectionName"] = "MCParticle"

  @property
  def mcParticleCollectionName( self ):
    """Set the name of the collection containing the MCParticle input.
    Default is "MCParticle".
    """
Jan Strube's avatar
Jan Strube committed
    return self._parameters["mcParticleCollectionName"]
  
  @mcParticleCollectionName.setter
  def mcParticleCollectionName( self, val ):
Jan Strube's avatar
Jan Strube committed
    self._parameters["mcParticleCollectionName"] = val