File indexing completed on 2024-11-23 03:28:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from .ProducerWithPSetDesc import ProducerWithPSetDesc
0004
0005 producerWithPSetDesc = ProducerWithPSetDesc(
0006 testingAutoGeneratedCfi = True,
0007 p_int = 3,
0008 p_int_untracked = -2147483647,
0009 p_int_opt = 0,
0010 p_int_optuntracked = 7,
0011 vint1 = [],
0012 vint2 = [2147483647],
0013 vint3 = [
0014 2147483647,
0015 -2147483647
0016 ],
0017 vint4 = [
0018 2147483647,
0019 -2147483647,
0020 0
0021 ],
0022 uint1 = 4294967295,
0023 uint2 = 0,
0024 vuint1 = [],
0025 vuint2 = [4294967295],
0026 vuint3 = [
0027 4294967295,
0028 0
0029 ],
0030 vuint4 = [
0031 4294967295,
0032 0,
0033 11
0034 ],
0035 vuint5 = [
0036 4294967295,
0037 0,
0038 11,
0039 21,
0040 31,
0041 41
0042 ],
0043 int64v1 = 9000000000000000000,
0044 int64v2 = -9000000000000000000,
0045 int64v3 = 0,
0046 vint64v1 = [],
0047 vint64v2 = [9000000000000000000],
0048 vint64v3 = [
0049 9000000000000000000,
0050 -9000000000000000000
0051 ],
0052 vint64v4 = [
0053 9000000000000000000,
0054 -9000000000000000000,
0055 0
0056 ],
0057 uint64v1 = 18000000000000000000,
0058 uint64v2 = 0,
0059 vuint64v1 = [],
0060 vuint64v2 = [18000000000000000000],
0061 vuint64v3 = [
0062 18000000000000000000,
0063 0
0064 ],
0065 vuint64v4 = [
0066 18000000000000000000,
0067 0,
0068 11
0069 ],
0070 doublev1 = 2.2250738585072014e-308,
0071 doublev2 = 0,
0072 doublev3 = 0.3,
0073 vdoublev1 = [],
0074 vdoublev2 = [1e+300],
0075 vdoublev3 = [
0076 1e+300,
0077 0
0078 ],
0079 vdoublev4 = [
0080 1e+300,
0081 0,
0082 11
0083 ],
0084 vdoublev5 = [
0085 1e+300,
0086 0,
0087 11,
0088 0.3
0089 ],
0090 boolv1 = True,
0091 boolv2 = False,
0092 stringv1 = 'Hello',
0093 stringv2 = '',
0094 vstringv1 = [],
0095 vstringv2 = ['Hello'],
0096 vstringv3 = [
0097 'Hello',
0098 'World'
0099 ],
0100 vstringv4 = [
0101 'Hello',
0102 'World',
0103 ''
0104 ],
0105 eventIDv1 = (11, 0, 12),
0106 eventIDv2 = (101, 0, 102),
0107 vEventIDv1 = [],
0108 vEventIDv2 = ['1000:1100'],
0109 vEventIDv3 = [
0110 '1000:1100',
0111 '10000:11000'
0112 ],
0113 vEventIDv4 = [
0114 '1000:1100',
0115 '10000:11000',
0116 '100000:110000'
0117 ],
0118 luminosityIDv1 = (11, 12),
0119 luminosityIDv2 = (101, 102),
0120 vLuminosityBlockIDv1 = [],
0121 vLuminosityBlockIDv2 = ['1000:1100'],
0122 vLuminosityBlockIDv3 = [
0123 '1000:1100',
0124 '10000:11000'
0125 ],
0126 vLuminosityBlockIDv4 = [
0127 '1000:1100',
0128 '10000:11000',
0129 '100000:110000'
0130 ],
0131 lumiRangev1 = ('1:1-9:9'),
0132 lumiRangev2 = ('3:4-1000:1000'),
0133 vLumiRangev1 = [],
0134 vLumiRangev2 = ['1:1-9:9'],
0135 vLumiRangev3 = [
0136 '1:1-9:9',
0137 '3:4-1000:1000'
0138 ],
0139 eventRangev1 = ('1:1-8:8'),
0140 eventRangev2 = ('3:4-1001:1002'),
0141 vEventRangev1 = [],
0142 vEventRangev2 = ['1:1-8:8'],
0143 vEventRangev3 = [
0144 '1:1-8:8',
0145 '3:4-1001:1002'
0146 ],
0147 inputTagv1 = ('One', 'Two', 'Three'),
0148 inputTagv2 = ('One', 'Two'),
0149 inputTagv3 = ('One'),
0150 inputTagv4 = ('One', '', 'Three'),
0151 vInputTagv1 = [],
0152 vInputTagv2 = ['One:Two:Three'],
0153 vInputTagv3 = [
0154 'One:Two:Three',
0155 'One:Two'
0156 ],
0157 vInputTagv4 = [
0158 'One:Two:Three',
0159 'One:Two',
0160 'One'
0161 ],
0162 vInputTagv5 = [
0163 'One:Two:Three',
0164 'One:Two',
0165 'One',
0166 'One::Three'
0167 ],
0168 esinputTagv1 = ('One', 'Two'),
0169 esinputTagv2 = ('One', ''),
0170 esinputTagv3 = ('', 'Two'),
0171 vESInputTagv1 = [],
0172 vESInputTagv2 = ['One:Two'],
0173 vESInputTagv3 = [
0174 'One:Two',
0175 'One:'
0176 ],
0177 vESInputTagv4 = [
0178 'One:Two',
0179 'One:',
0180 ':Two'
0181 ],
0182 fileInPath = 'FWCore/Integration/plugins/ProducerWithPSetDesc.cc',
0183 bar = dict(
0184 Drinks = 5,
0185 uDrinks = 5,
0186 oDrinks = 5,
0187 ouDrinks = 5
0188 ),
0189 test104 = [
0190 cms.PSet()
0191 ],
0192 test105 = [
0193 ],
0194 test1 = 0.1,
0195 test2 = 0.2,
0196 testA = 'fooA',
0197 testB = 100,
0198 testC = 101,
0199 oiswitch = 1,
0200 oivalue1 = cms.double(101),
0201 oivalue2 = cms.double(101),
0202 testDeeplyNested2 = dict(
0203 bswitch = False,
0204 bvalue1 = 101,
0205 bvalue2 = 101,
0206 iswitch = 1,
0207 ivalue1 = 101,
0208 ivalue2 = 101,
0209 sswitch = '1',
0210 svalue1 = 101,
0211 svalue2 = 101,
0212 testint = 1000
0213 ),
0214 bars = [
0215 cms.PSet(
0216 oDrinks = cms.uint32(11)
0217 ),
0218 cms.PSet(
0219 ndouDrinks = cms.untracked.uint32(11),
0220 oDrinks = cms.uint32(11),
0221 ouDrinks = cms.untracked.uint32(11),
0222 testDeeplyNested = cms.PSet(
0223 testint = cms.int32(2)
0224 ),
0225 anotherVPSet = cms.VPSet(
0226 cms.PSet(),
0227 cms.PSet(
0228 xvalue = cms.int32(17)
0229 )
0230 )
0231 )
0232 ],
0233 subpset = dict(
0234 xvalue = 11,
0235 bar = dict(
0236 Drinks = 5,
0237 uDrinks = 5,
0238 oDrinks = 5,
0239 ouDrinks = 5
0240 )
0241 ),
0242 wildcardPset = cms.PSet(
0243 p_uint_opt = cms.uint32(0),
0244 allowAnyLabel_ = cms.optional.int32
0245 ),
0246 switchPset = dict(
0247 iswitch = 1,
0248 ivalue1 = 101,
0249 ivalue2 = 101,
0250 addTeVRefits = True,
0251 pickySrc = (''),
0252 tpfmsSrc = ('')
0253 ),
0254 xorPset = cms.PSet(
0255 name = cms.string('11'),
0256 name1 = cms.string('11'),
0257 name3 = cms.string('11')
0258 ),
0259 orPset = cms.PSet(
0260 x1 = cms.string('11'),
0261 y1 = cms.string('11')
0262 ),
0263 andPset = cms.PSet(
0264 x1 = cms.string('11'),
0265 x2 = cms.uint32(11),
0266 y1 = cms.string('11'),
0267 y2 = cms.uint32(11),
0268 z1 = cms.string('11'),
0269 z2 = cms.uint32(11),
0270 b1 = cms.string('11'),
0271 b2 = cms.uint32(11),
0272 b3 = cms.uint32(11),
0273 b4 = cms.uint32(11),
0274 b5 = cms.uint32(11),
0275 b6 = cms.uint32(11)
0276 ),
0277 ifExistsPset = cms.PSet(
0278 x1 = cms.uint32(11),
0279 x2 = cms.string('11'),
0280 z1 = cms.uint32(11),
0281 z2 = cms.string('11')
0282 ),
0283 allowedLabelsPset = cms.PSet(
0284 p_int_opt = cms.int32(0),
0285 testAllowedLabels = cms.vstring(),
0286 testAllowedLabelsUntracked = cms.untracked.vstring(),
0287 testWithSet = cms.untracked.vstring(),
0288 testWithVectorOfSets = cms.untracked.vstring()
0289 ),
0290 noDefaultPset3 = dict(),
0291 noDefaultPset4 = dict(),
0292 plugin = cms.PSet(
0293 value = cms.int32(5),
0294 type = cms.string('edmtestAnotherValueMaker')
0295
0296 ),
0297 plugin1 = cms.PSet(),
0298 plugin2 = [
0299 ],
0300 plugin3 = [
0301 cms.PSet(
0302 type = cms.string('edmtestAnotherOneMaker')
0303 ),
0304 cms.PSet(
0305 type = cms.string('edmtestAnotherValueMaker'),
0306 value = cms.int32(11)
0307 )
0308 ],
0309 plugin4 = cms.PSet(
0310 value = cms.int32(5),
0311 pluginRecursive = cms.PSet(),
0312 type = cms.string('edmtestAnotherMakerWithRecursivePlugin')
0313
0314 ),
0315 plugin5 = [
0316 cms.PSet(
0317 type = cms.string('edmtestAnotherOneMaker')
0318 ),
0319 cms.PSet(
0320 type = cms.string('edmtestAnotherMakerWithRecursivePlugin'),
0321 value = cms.int32(11)
0322 )
0323 ]
0324 )