Skip to content

Commit

Permalink
Merge pull request #3986 from mark-grimes/addBackRPCCustoms
Browse files Browse the repository at this point in the history
Add back RPC customs to HGCal scenario
  • Loading branch information
cmsbuild committed May 23, 2014
2 parents 22b4603 + 3ccf154 commit af7558c
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions SLHCUpgradeSimulations/Configuration/python/combinedCustoms.py
Expand Up @@ -143,7 +143,13 @@ def cust_2023SHCal(process):
return process

def cust_2023HGCal(process):
process=cust_2023Pixel(process)
process=customisePostLS1(process)
process=customiseBE5DPixel10D(process)
process=customise_HcalPhase2(process)
process=customise_ev_BE5DPixel10D(process)
process=customise_gem2023(process)
process=customise_rpc(process)
process=jetCustoms.customise_jets(process)
if hasattr(process,'L1simulation_step'):
process.simEcalTriggerPrimitiveDigis.BarrelOnly = cms.bool(True)
if hasattr(process,'digitisation_step'):
Expand All @@ -155,7 +161,14 @@ def cust_2023HGCal(process):
return process

def cust_2023HGCalMuon(process):
process=cust_2023Muon(process)
process=customisePostLS1(process)
process=customiseBE5DPixel10D(process)
process=customise_HcalPhase2(process)
process=customise_ev_BE5DPixel10D(process)
process=customise_gem2023(process)
process=customise_rpc(process)
process=customise_me0(process)
process=jetCustoms.customise_jets(process)
if hasattr(process,'L1simulation_step'):
process.simEcalTriggerPrimitiveDigis.BarrelOnly = cms.bool(True)
if hasattr(process,'digitisation_step'):
Expand Down

0 comments on commit af7558c

Please sign in to comment.