Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-06 07:52:11

0001 """Helper object for files containing one or more MCParticle collections"""
0002 
0003 from DDSim.Helper.Input import Input
0004 from DDSim.Helper.MCParticle import MCParticleMixin
0005 
0006 
0007 class LCIO(Input, MCParticleMixin):
0008   """Configuration for the LCIO input files"""
0009 
0010   def __init__(self):
0011     super(LCIO, self).__init__()
0012     self._parameters["MCParticleCollectionName"] = "MCParticle"
0013     self._closeProperties()