diff --git a/DDSim/Helper/MCParticles.py b/DDSim/Helper/MCParticles.py new file mode 100644 index 0000000000000000000000000000000000000000..f8ac686f14f21a2e0c4ec50b337195d64da2b9e6 --- /dev/null +++ b/DDSim/Helper/MCParticles.py @@ -0,0 +1,20 @@ +"""Helper object for files containing one or more MCParticle collections""" + +from DDSim.Helper.Input import Input + +class MCParticles( Input ): + """Configuration for the generator-level InputFiles""" + def __init__( self ): + super(MCParticles, self).__init__() + 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"] + @particlesPerEvent.setter + def particlesPerEvent( self, val ): + self._parameters["MCParticleCollectionName"] = val +