File indexing completed on 2023-07-07 23:02:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.EventContent.EventContent_cff import FEVTEventContent
0004 skimContent = FEVTEventContent.clone()
0005 skimContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
0006 skimContent.outputCommands.append("drop *_*_*_SKIM")
0007
0008 from Configuration.EventContent.EventContent_cff import RAWMINIAODEventContent
0009 skimMiniAODContent = RAWMINIAODEventContent.clone()
0010 skimMiniAODContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
0011 skimMiniAODContent.outputCommands.append("drop *_*_*_SKIM")
0012
0013
0014
0015 from DPGAnalysis.Skims.SinglePhotonJetPlusHOFilter_cff import *
0016 SinglePhotonJetPlusHOFilterPath = cms.Path( SinglePhotonJetPlusHOFilterSequence )
0017 SKIMStreamSinglePhotonJetPlusHOFilter = cms.FilteredStream(
0018 responsible = 'HCAL DPG',
0019 name = 'SinglePhotonJetPlusHOFilter',
0020 paths = ( SinglePhotonJetPlusHOFilterPath ),
0021 content = skimContent.outputCommands,
0022 selectEvents = cms.untracked.PSet(),
0023 dataTier = cms.untracked.string('RAW-RECO')
0024 )
0025 from DPGAnalysis.Skims.JetHTJetPlusHOFilter_cff import *
0026 JetHTJetPlusHOFilterPath = cms.Path( JetHTJetPlusHOFilterSequence )
0027 SKIMStreamJetHTJetPlusHOFilter = cms.FilteredStream(
0028 responsible = 'HCAL DPG',
0029 name = 'JetHTJetPlusHOFilter',
0030 paths = ( JetHTJetPlusHOFilterPath ),
0031 content = skimContent.outputCommands,
0032 selectEvents = cms.untracked.PSet(),
0033 dataTier = cms.untracked.string('RAW-RECO')
0034 )
0035
0036
0037 from DPGAnalysis.Skims.logErrorSkim_cff import *
0038 pathlogerror =cms.Path(logerrorseq)
0039
0040 SKIMStreamLogError = cms.FilteredStream(
0041 responsible = 'reco convener',
0042 name = 'LogError',
0043 paths = (pathlogerror),
0044 content = skimContent.outputCommands,
0045 selectEvents = cms.untracked.PSet(),
0046 dataTier = cms.untracked.string('RAW-RECO')
0047 )
0048
0049
0050 pathlogerrormonitor =cms.Path(logerrormonitorseq)
0051
0052 SKIMStreamLogErrorMonitor = cms.FilteredStream(
0053 responsible = 'reco convener',
0054 name = 'LogErrorMonitor',
0055 paths = (pathlogerrormonitor),
0056 content = cms.untracked.vstring('drop *_*_*_*', 'keep edmErrorSummaryEntrys_*_*_*'),
0057 selectEvents = cms.untracked.PSet(),
0058 dataTier = cms.untracked.string('USER')
0059 )
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078
0079
0080
0081
0082
0083
0084
0085
0086
0087
0088
0089
0090
0091
0092
0093
0094
0095
0096
0097
0098
0099
0100
0101
0102
0103
0104
0105
0106
0107
0108
0109
0110
0111
0112
0113
0114
0115
0116
0117
0118
0119
0120
0121
0122
0123 from DPGAnalysis.Skims.EcalActivitySkim_cff import *
0124 EcalActivityPath = cms.Path( ecalActivitySeq )
0125 SKIMStreamEcalActivity = cms.FilteredStream(
0126 responsible = 'ECAL DPG',
0127 name = 'EcalActivity',
0128 paths = ( EcalActivityPath ),
0129 content = skimContent.outputCommands,
0130 selectEvents = cms.untracked.PSet(),
0131 dataTier = cms.untracked.string('RAW-RECO')
0132 )
0133
0134
0135
0136
0137
0138
0139
0140
0141
0142
0143
0144
0145
0146
0147
0148
0149
0150
0151
0152
0153
0154
0155
0156
0157
0158
0159
0160
0161
0162
0163
0164
0165
0166
0167
0168
0169
0170
0171
0172
0173
0174
0175
0176
0177
0178
0179
0180
0181
0182
0183
0184
0185
0186
0187
0188
0189
0190
0191
0192
0193
0194
0195
0196
0197
0198
0199
0200
0201
0202
0203
0204
0205
0206
0207
0208
0209
0210
0211
0212
0213
0214
0215
0216
0217
0218
0219
0220
0221
0222
0223
0224
0225
0226
0227
0228
0229
0230
0231
0232
0233
0234
0235
0236
0237
0238
0239
0240
0241
0242
0243
0244
0245
0246
0247
0248
0249
0250
0251
0252
0253
0254
0255
0256
0257
0258
0259
0260
0261
0262
0263
0264
0265
0266
0267
0268
0269
0270
0271
0272
0273
0274
0275
0276
0277
0278
0279
0280
0281
0282
0283
0284
0285 from DPGAnalysis.Skims.WMuSkim_cff import *
0286 WMuPath = cms.Path( pfMetWMuNuSeq )
0287 SKIMStreamWMu = cms.FilteredStream(
0288 responsible = 'DDT Test',
0289 name = 'WMu',
0290 paths = ( WMuPath ),
0291 content = skimContent.outputCommands,
0292 selectEvents = cms.untracked.PSet(),
0293 dataTier = cms.untracked.string('RAW-RECO')
0294 )
0295
0296
0297 from DPGAnalysis.Skims.WElectronSkim_cff import *
0298 WElectronPath = cms.Path( elecMetSeq )
0299 SKIMStreamWElectron = cms.FilteredStream(
0300 responsible = 'Egamma POG',
0301 name = 'WElectron',
0302 paths = ( WElectronPath ),
0303 content = skimContent.outputCommands,
0304 selectEvents = cms.untracked.PSet(),
0305 dataTier = cms.untracked.string('RAW-RECO')
0306 )
0307
0308
0309
0310 from DPGAnalysis.Skims.TopMuEGSkim_cff import *
0311 TopMuEGPath = cms.Path( TopMuEGsequence )
0312 SKIMStreamTopMuEG = cms.FilteredStream(
0313 responsible = 'BTV',
0314 name = 'TopMuEG',
0315 paths = ( TopMuEGPath ),
0316 content = skimContent.outputCommands,
0317 selectEvents = cms.untracked.PSet(),
0318 dataTier = cms.untracked.string('RAW-RECO')
0319 )
0320
0321
0322
0323 from DPGAnalysis.Skims.ZMuSkim_cff import *
0324 from DPGAnalysis.Skims.ZmmgSkim_cff import *
0325
0326 ZMuSkimPath = cms.Path(diMuonSelSeq)
0327 ZmmgSkimPath = cms.Path(ZmmgSkimSeq)
0328 WtcMetSkimPath = cms.Path(tcMetWMuNuSeq)
0329 WpfMetSkimPath = cms.Path(pfMetWMuNuSeq)
0330
0331
0332
0333
0334
0335
0336
0337
0338 SKIMStreamZMu = cms.FilteredStream(
0339 responsible = 'Muon DPG-POG-MuEW',
0340 name = 'ZMu',
0341 paths = (ZMuSkimPath),
0342 content = skimContent.outputCommands,
0343 selectEvents = cms.untracked.PSet(),
0344 dataTier = cms.untracked.string('RAW-RECO')
0345 )
0346 SKIMStreamZmmg = cms.FilteredStream(
0347 responsible = 'ECAL DPG',
0348 name = 'Zmmg',
0349 paths = (ZmmgSkimPath),
0350 content = skimContent.outputCommands,
0351 selectEvents = cms.untracked.PSet(),
0352 dataTier = cms.untracked.string('RAW-RECO')
0353 )
0354
0355
0356
0357
0358
0359
0360
0361
0362
0363
0364
0365
0366
0367
0368
0369
0370
0371
0372
0373
0374
0375
0376
0377
0378 from DPGAnalysis.Skims.WElectronSkim_cff import *
0379 WElectronPath = cms.Path( elecMetSeq )
0380 SKIMStreamWElectron = cms.FilteredStream(
0381 responsible = 'ECAL DPG',
0382 name = 'WElectron',
0383 paths = ( WElectronPath ),
0384 content = WElectronSkimContent.outputCommands,
0385 selectEvents = cms.untracked.PSet(),
0386 dataTier = cms.untracked.string('USER')
0387 )
0388
0389
0390
0391 from DPGAnalysis.Skims.ZElectronSkim_cff import *
0392 ZElectronPathGsf = cms.Path( zdiElectronSequence )
0393
0394 SKIMStreamZElectron = cms.FilteredStream(
0395 responsible = 'ECAL DPG',
0396 name = 'ZElectron',
0397 paths = ( ZElectronPathGsf ),
0398 content = skimContent.outputCommands,
0399 selectEvents = cms.untracked.PSet(),
0400 dataTier = cms.untracked.string('RAW-RECO')
0401 )
0402
0403
0404
0405 from DPGAnalysis.Skims.IsoPhotonEBSkim_cff import *
0406 isoPhotonEBPath = cms.Path( isoPhotonEBSequence )
0407
0408 SKIMStreamIsoPhotonEB = cms.FilteredStream(
0409 responsible = 'L1 DPG',
0410 name = 'IsoPhotonEB',
0411 paths = ( isoPhotonEBPath ),
0412 content = skimContent.outputCommands,
0413 selectEvents = cms.untracked.PSet(),
0414 dataTier = cms.untracked.string('RAW-RECO')
0415 )
0416
0417
0418
0419 from DPGAnalysis.Skims.HighMETSkim_cff import *
0420 condPath = cms.Path(CondMETSelSeq)
0421
0422
0423
0424 SKIMStreamHighMET = cms.FilteredStream(
0425 responsible = 'MET Group',
0426 name = 'HighMET',
0427 paths = (condPath),
0428
0429
0430
0431 content = skimContent.outputCommands,
0432 selectEvents = cms.untracked.PSet(),
0433 dataTier = cms.untracked.string('RAW-RECO')
0434 )
0435
0436
0437
0438
0439 from DPGAnalysis.Skims.MuTauSkim_cff import *
0440 MuTauPath = cms.Path( mutauSkimSequence )
0441 SKIMStreamMuTau = cms.FilteredStream(
0442 responsible = 'Tau POG',
0443 name = 'MuTau',
0444 paths = ( MuTauPath ),
0445 content = skimMiniAODContent.outputCommands,
0446 selectEvents = cms.untracked.PSet(),
0447 dataTier = cms.untracked.string('USER')
0448 )
0449
0450
0451
0452
0453 from DPGAnalysis.Skims.ZHbbSkim_cff import *
0454 ZHbbSkimPath = cms.Path(ZHbbSkim)
0455 SKIMStreamZHbb = cms.FilteredStream(
0456 responsible = 'BTV',
0457 name = 'ZHbb',
0458 paths = (ZHbbSkimPath),
0459 content = skimContent.outputCommands,
0460 selectEvents = cms.untracked.PSet(),
0461 dataTier = cms.untracked.string('RAW-RECO')
0462 )
0463
0464
0465
0466