|
||||
File indexing completed on 2024-04-06 12:12:31
0001 # Test of options when all parameters explicitly set 0002 import FWCore.ParameterSet.Config as cms 0003 process = cms.Process("TEST") 0004 process.source = cms.Source("EmptySource") 0005 process.maxEvents = cms.untracked.PSet( 0006 input = cms.untracked.int32(1) 0007 ) 0008 0009 process.options = dict( 0010 dumpOptions = True, 0011 numberOfThreads = 4, 0012 numberOfStreams = 4, 0013 numberOfConcurrentLuminosityBlocks = 3, 0014 eventSetup = dict( 0015 numberOfConcurrentIOVs = 2 0016 ) 0017 )
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |