Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:42

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customise(process):
0004     
0005     if not hasattr(process, "options"):
0006         process.options = cms.untracked.PSet()
0007         
0008     process.options.numberOfThreads = 1
0009     process.options.numberOfStreams = 1
0010     
0011     return(process)