from Configuration.DataProcessing.Utils import addMonitoring

# call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils
process = addMonitoring(process)

# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.postLS1Customs
from SLHCUpgradeSimulations.Configuration.postLS1Customs import customisePostLS1

# call to customisation function customisePostLS1 imported from SLHCUpgradeSimulations.Configuration.postLS1Customs
process = customisePostLS1(process)

# Automatic addition of the customisation function from Configuration.StandardSequences.SimWithCastor_cff
from Configuration.StandardSequences.SimWithCastor_cff import customise

# call to customisation function customise imported from Configuration.StandardSequences.SimWithCastor_cff
process = customise(process)

# End of customisation functions

process.generation_step.remove(process.randomEngineStateProducer)
process.generation_step.remove(process.VtxSmeared)
process.generation_step.remove(process.genParticlesForJets)
process.generation_step.remove(process.kt4GenJets)
process.generation_step.remove(process.kt6GenJets)
process.generation_step.remove(process.iterativeCone5GenJets)
process.generation_step.remove(process.ak4GenJets)
process.generation_step.remove(process.ak5GenJets)
process.generation_step.remove(process.ak8GenJets)
process.generation_step.remove(process.genCandidatesForMET)
process.generation_step.remove(process.genParticlesForMETAllVisible)
process.generation_step.remove(process.genMetCalo)
Ejemplo n.º 2
0
# Additional output definition

# Other statements
#this statement we've to comment out, or certain things won't get loaded locally anymore
#process.XMLFromDBSource.label = cms.string("ExtendedPostLS1")

#this loads the global tag
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, 'POSTLS170_V5::All', '')

# Path and EndPath definitions
process.simulation_step = cms.Path(process.psim)
process.endjob_step = cms.EndPath(process.endOfProcess)
process.RAWSIMoutput_step = cms.EndPath(process.RAWSIMoutput)

# Schedule definition
process.schedule = cms.Schedule(process.simulation_step, process.endjob_step,
                                process.RAWSIMoutput_step)

# customisation of the process.

# Automatic addition of the customisation function from Configuration.StandardSequences.SimWithCastor_cff
from Configuration.StandardSequences.SimWithCastor_cff import customise

#call to customisation function customise imported from Configuration.StandardSequences.SimWithCastor_cff
process = customise(process)

# End of customisation functions

print process.dumpPython()