CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/QCDAnalysis/Skimming/python/softJetsSkim_cff.py

Go to the documentation of this file.
00001 # The following comments couldn't be translated into the new config version:
00002 
00003 #
00004 #
00005 # Modules for soft Jet trigger skim. Designed for CSA07 only.
00006 # Should be used in veto mode and kill dominant samples of other physics
00007 #
00008 
00009 import FWCore.ParameterSet.Config as cms
00010 
00011 singleJetTrigger = cms.EDFilter("QCDSingleJetFilter",
00012     TriggerJetCollectionB = cms.InputTag("midPointCone7CaloJets"),
00013     MinPt = cms.double(20.0),
00014     TriggerJetCollectionA = cms.InputTag("midPointCone7CaloJets")
00015 )
00016 
00017 muonTrigger = cms.EDFilter("HLTHighLevel",
00018     HLTPaths = cms.vstring('HLT_Mu15_L1Mu7'),
00019     byName = cms.bool(True),
00020     andOr = cms.bool(True),
00021     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
00022 )
00023 
00024 electronTrigger = cms.EDFilter("HLTHighLevel",
00025     HLTPaths = cms.vstring('HLT_IsoEle18_L1R'),
00026     byName = cms.bool(True),
00027     andOr = cms.bool(True),
00028     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
00029 )
00030 
00031 photonTrigger = cms.EDFilter("HLTHighLevel",
00032     HLTPaths = cms.vstring('HLT_IsoPhoton40_L1R'),
00033     byName = cms.bool(True),
00034     andOr = cms.bool(True),
00035     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
00036 )
00037 
00038