File indexing completed on 2023-03-17 11:17:13
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.EventContent.EventContent_cff import *
0004 btagGenBbEventContent = cms.PSet(
0005 outputCommands = cms.untracked.vstring()
0006 )
0007 AODSIMbtagGenBbEventContent = cms.PSet(
0008 outputCommands = cms.untracked.vstring()
0009 )
0010 RECOSIMbtagGenBbEventContent = cms.PSet(
0011 outputCommands = cms.untracked.vstring()
0012 )
0013 btagGenBbEventSelection = cms.PSet(
0014 SelectEvents = cms.untracked.PSet(
0015 SelectEvents = cms.vstring('btagGenBbPath')
0016 )
0017 )
0018 AODSIMbtagGenBbEventContent.outputCommands.extend(AODSIMEventContent.outputCommands)
0019 AODSIMbtagGenBbEventContent.outputCommands.extend(btagGenBbEventContent.outputCommands)
0020 RECOSIMbtagGenBbEventContent.outputCommands.extend(RECOSIMEventContent.outputCommands)
0021 RECOSIMbtagGenBbEventContent.outputCommands.extend(btagGenBbEventContent.outputCommands)
0022