Esempio n. 1
0


# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.combinedCustoms
#from SLHCUpgradeSimulations.Configuration.combinedCustoms import cust_2023SHCal 
#from SLHCUpgradeSimulations.Configuration.combinedCustoms import cust_2023Muon 

#call to customisation function cust_2023SHCal imported from SLHCUpgradeSimulations.Configuration.combinedCustoms
#process = cust_2023SHCal(process)
#process = cust_2023Muon(process)



# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.me0Customs
from SLHCUpgradeSimulations.Configuration.me0Customs import customise 
process = customise(process)

process.maxEvents = cms.untracked.PSet(
    input = cms.untracked.int32(-1)
)
process.source = cms.Source("PoolSource",
    fileNames = cms.untracked.vstring('file:///somewhere/simevent.root') ##/somewhere/simevent.root" }
)


#process.load('RecoLocalMuon.GEMRecHit.me0RecHits_cfi')
#process.load('RecoLocalMuon.GEMSegments.me0Segments_cfi')
process.load('RecoMuon.MuonIdentification.me0MuonReco_cff')

#process.p = cms.Path(process.me0RecHits*process.me0Segments*process.me0MuonReco)
process.p = cms.Path(process.me0MuonReco)
Esempio n. 2
0
# Path and EndPath definitions
process.digitisation_step = cms.Path(process.pdigi)
process.endjob_step = cms.EndPath(process.endOfProcess)
process.FEVTDEBUGHLToutput_step = cms.EndPath(process.FEVTDEBUGHLToutput)

# Schedule definition
process.schedule = cms.Schedule(process.digitisation_step, process.endjob_step,
                                process.FEVTDEBUGHLToutput_step)

# customisation of the process.

# Automatic addition of the customisation function from SimMuon.GEMDigitizer.customizeGEMDigi
from SimMuon.GEMDigitizer.customizeGEMDigi import customize_digi_addGEM_nocalo

#call to customisation function customize_digi_addGEM_nocalo imported from SimMuon.GEMDigitizer.customizeGEMDigi
process = customize_digi_addGEM_nocalo(process)

# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.fixMissingUpgradeGTPayloads
from SLHCUpgradeSimulations.Configuration.fixMissingUpgradeGTPayloads import fixRPCConditions

#call to customisation function fixRPCConditions imported from SLHCUpgradeSimulations.Configuration.fixMissingUpgradeGTPayloads
process = fixRPCConditions(process)

# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.me0Customs
from SLHCUpgradeSimulations.Configuration.me0Customs import customise

#call to customisation function customise imported from SLHCUpgradeSimulations.Configuration.me0Customs
process = customise(process)

# End of customisation functions