Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.EventContent.EventContent_cff import *
0004 btagElecInJetEventContent = cms.PSet(
0005     outputCommands = cms.untracked.vstring()
0006 )
0007 AODSIMbtagElecInJetEventContent = cms.PSet(
0008     outputCommands = cms.untracked.vstring()
0009 )
0010 RECOSIMbtagElecInJetEventContent = cms.PSet(
0011     outputCommands = cms.untracked.vstring()
0012 )
0013 btagElecInJetEventSelection = cms.PSet(
0014     SelectEvents = cms.untracked.PSet(
0015         SelectEvents = cms.vstring('btagElecInJetPath')
0016     )
0017 )
0018 AODSIMbtagElecInJetEventContent.outputCommands.extend(AODSIMEventContent.outputCommands)
0019 AODSIMbtagElecInJetEventContent.outputCommands.extend(btagElecInJetEventContent.outputCommands)
0020 RECOSIMbtagElecInJetEventContent.outputCommands.extend(RECOSIMEventContent.outputCommands)
0021 RECOSIMbtagElecInJetEventContent.outputCommands.extend(btagElecInJetEventContent.outputCommands)
0022