File indexing completed on 2024-09-24 22:51:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CTPPSProtonReconstructionSimulationValidator(*args, **kwargs):
0004 mod = cms.EDAnalyzer('CTPPSProtonReconstructionSimulationValidator',
0005 lhcInfoLabel = cms.string(''),
0006 lhcInfoPerLSLabel = cms.string(''),
0007 lhcInfoPerFillLabel = cms.string(''),
0008 useNewLHCInfo = cms.bool(False),
0009 outputFile = cms.string('output.root'),
0010 verbosity = cms.untracked.uint32(0),
0011 mightGet = cms.optional.untracked.vstring
0012 )
0013 for a in args:
0014 mod.update_(a)
0015 mod.update_(kwargs)
0016 return mod