1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
process.source = cms.Source("EmptySource")
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1),
output = cms.optional.untracked.allowed(cms.int32,cms.PSet)
)
process.maxLuminosityBlocks = cms.untracked.PSet(
input = cms.untracked.int32(-1)
)
process.options = cms.untracked.PSet(
IgnoreCompletely = cms.untracked.vstring(),
Rethrow = cms.untracked.vstring(),
TryToContinue = cms.untracked.vstring(),
accelerators = cms.untracked.vstring('*'),
allowUnscheduled = cms.obsolete.untracked.bool,
canDeleteEarly = cms.untracked.vstring(),
deleteNonConsumedUnscheduledModules = cms.untracked.bool(True),
dumpOptions = cms.untracked.bool(False),
emptyRunLumiMode = cms.obsolete.untracked.string,
eventSetup = cms.untracked.PSet(
forceNumberOfConcurrentIOVs = cms.untracked.PSet(
allowAnyLabel_=cms.required.untracked.uint32
),
numberOfConcurrentIOVs = cms.untracked.uint32(0)
),
fileMode = cms.untracked.string('FULLMERGE'),
forceEventSetupCacheClearOnNewRun = cms.untracked.bool(False),
holdsReferencesToDeleteEarly = cms.untracked.VPSet(),
makeTriggerResults = cms.obsolete.untracked.bool,
modulesToCallForTryToContinue = cms.untracked.vstring(),
modulesToIgnoreForDeleteEarly = cms.untracked.vstring(),
numberOfConcurrentLuminosityBlocks = cms.untracked.uint32(0),
numberOfConcurrentRuns = cms.untracked.uint32(1),
numberOfStreams = cms.untracked.uint32(0),
numberOfThreads = cms.untracked.uint32(1),
printDependencies = cms.untracked.bool(False),
sizeOfStackForThreadsInKB = cms.optional.untracked.uint32,
throwIfIllegalParameter = cms.untracked.bool(True),
wantSummary = cms.untracked.bool(False)
)
process.m1a = cms.EDProducer("IntProducer",
ivalue = cms.int32(2)
)
process.testout1 = cms.OutputModule("TestOutputModule",
name = cms.string('foo')
)
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
FwkReport = cms.untracked.PSet(
limit = cms.untracked.int32(10000000),
reportEvery = cms.untracked.int32(1)
),
FwkSummary = cms.untracked.PSet(
limit = cms.untracked.int32(10000000),
reportEvery = cms.untracked.int32(1)
),
INFO = cms.untracked.PSet(
limit = cms.untracked.int32(0)
),
Root_NoDictionary = cms.untracked.PSet(
limit = cms.untracked.int32(0)
),
default = cms.untracked.PSet(
limit = cms.untracked.int32(10000000)
),
enable = cms.untracked.bool(True),
enableStatistics = cms.untracked.bool(False),
lineLength = cms.optional.untracked.int32,
noLineBreaks = cms.optional.untracked.bool,
noTimeStamps = cms.untracked.bool(False),
resetStatistics = cms.untracked.bool(False),
statisticsThreshold = cms.untracked.string('WARNING'),
threshold = cms.untracked.string('INFO'),
allowAnyLabel_=cms.optional.untracked.PSetTemplate(
limit = cms.optional.untracked.int32,
reportEvery = cms.untracked.int32(1),
timespan = cms.optional.untracked.int32
)
),
cout = cms.untracked.PSet(
enable = cms.untracked.bool(False),
enableStatistics = cms.untracked.bool(False),
lineLength = cms.optional.untracked.int32,
noLineBreaks = cms.optional.untracked.bool,
noTimeStamps = cms.optional.untracked.bool,
resetStatistics = cms.untracked.bool(False),
statisticsThreshold = cms.optional.untracked.string,
threshold = cms.optional.untracked.string,
allowAnyLabel_=cms.optional.untracked.PSetTemplate(
limit = cms.optional.untracked.int32,
reportEvery = cms.untracked.int32(1),
timespan = cms.optional.untracked.int32
)
),
debugModules = cms.untracked.vstring(),
default = cms.untracked.PSet(
limit = cms.optional.untracked.int32,
lineLength = cms.untracked.int32(80),
noLineBreaks = cms.untracked.bool(False),
noTimeStamps = cms.untracked.bool(False),
reportEvery = cms.untracked.int32(1),
statisticsThreshold = cms.untracked.string('INFO'),
threshold = cms.untracked.string('INFO'),
timespan = cms.optional.untracked.int32,
allowAnyLabel_=cms.optional.untracked.PSetTemplate(
limit = cms.optional.untracked.int32,
reportEvery = cms.untracked.int32(1),
timespan = cms.optional.untracked.int32
)
),
files = cms.untracked.PSet(
allowAnyLabel_=cms.optional.untracked.PSetTemplate(
enableStatistics = cms.untracked.bool(False),
extension = cms.optional.untracked.string,
filename = cms.optional.untracked.string,
lineLength = cms.optional.untracked.int32,
noLineBreaks = cms.optional.untracked.bool,
noTimeStamps = cms.optional.untracked.bool,
output = cms.optional.untracked.string,
resetStatistics = cms.untracked.bool(False),
statisticsThreshold = cms.optional.untracked.string,
threshold = cms.optional.untracked.string,
allowAnyLabel_=cms.optional.untracked.PSetTemplate(
limit = cms.optional.untracked.int32,
reportEvery = cms.untracked.int32(1),
timespan = cms.optional.untracked.int32
)
)
),
suppressDebug = cms.untracked.vstring(),
suppressFwkInfo = cms.untracked.vstring(),
suppressInfo = cms.untracked.vstring(),
suppressWarning = cms.untracked.vstring(),
allowAnyLabel_=cms.optional.untracked.PSetTemplate(
limit = cms.optional.untracked.int32,
reportEvery = cms.untracked.int32(1),
timespan = cms.optional.untracked.int32
)
)
process.p1 = cms.Path(process.m1a)
process.e1 = cms.EndPath(process.testout1)
|