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 btagMuonInJetEventContent = cms.PSet(
0005     outputCommands = cms.untracked.vstring()
0006 )
0007 AODSIMbtagMuonInJetEventContent = cms.PSet(
0008     outputCommands = cms.untracked.vstring()
0009 )
0010 RECOSIMbtagMuonInJetEventContent = cms.PSet(
0011     outputCommands = cms.untracked.vstring()
0012 )
0013 btagMuonInJetEventSelection = cms.PSet(
0014     SelectEvents = cms.untracked.PSet(
0015         SelectEvents = cms.vstring('btagMuonInJetPath')
0016     )
0017 )
0018 AODSIMbtagMuonInJetEventContent.outputCommands.extend(AODSIMEventContent.outputCommands)
0019 AODSIMbtagMuonInJetEventContent.outputCommands.extend(btagMuonInJetEventContent.outputCommands)
0020 RECOSIMbtagMuonInJetEventContent.outputCommands.extend(RECOSIMEventContent.outputCommands)
0021 RECOSIMbtagMuonInJetEventContent.outputCommands.extend(btagMuonInJetEventContent.outputCommands)
0022