Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-01 23:40:43

0001 
0002 import FWCore.ParameterSet.Config as cms
0003 
0004 from SLHCUpgradeSimulations.Configuration.muonCustomsPreMixing import customise_csc_PostLS1
0005 from . import postLS1Customs
0006 
0007 
0008 def customisePostLS1(process):
0009 
0010     # apply the general 25 ns post-LS1 customisation
0011     process = postLS1Customs.customisePostLS1(process)
0012     # deal with premixing-specific CSC changes separately
0013     process = customise_csc_PostLS1(process)
0014 
0015     return process
0016 
0017 
0018 def customisePostLS1_50ns(process):
0019 
0020     # apply the general 25 ns post-LS1 customisation
0021     process = postLS1Customs.customisePostLS1_50ns(process)
0022     # deal with premixing-specific CSC changes separately
0023     process = customise_csc_PostLS1(process)
0024 
0025     return process
0026 
0027 
0028 def customisePostLS1_HI(process):
0029 
0030     # apply the general 25 ns post-LS1 customisation
0031     process = postLS1Customs.customisePostLS1_HI(process)
0032     # deal with premixing-specific CSC changes separately
0033     process = customise_csc_PostLS1(process)
0034 
0035     return process
0036