def customise_aging_1000(process): process = aging.customise_aging_1000(process) return process
getattr(process, path)._seq = process.generator * getattr(process, path)._seq # customisation of the process. # Automatic addition of the customisation function from SimGeneral.MixingModule.customiseStoredTPConfig from SimGeneral.MixingModule.customiseStoredTPConfig import higherPtTP #call to customisation function higherPtTP imported from SimGeneral.MixingModule.customiseStoredTPConfig process = higherPtTP(process) # Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.aging from SLHCUpgradeSimulations.Configuration.aging import customise_aging_1000 #call to customisation function customise_aging_1000 imported from SLHCUpgradeSimulations.Configuration.aging process = customise_aging_1000(process) # End of customisation functions # Customisation from command line # Add early deletion of temporary data products to reduce peak memory need from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete process = customiseEarlyDelete(process) # End adding early deletion # ______________________________________________________________________________ # Check LCT BX shift import os if 'CMSSW_VERSION' not in os.environ: raise RunTimeError('Could not determine CMSSW version.')
def customise_aging_1000(process): process=aging.customise_aging_1000(process) return process