CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
softJetsSkim_cff.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 #
4 #
5 # Modules for soft Jet trigger skim. Designed for CSA07 only.
6 # Should be used in veto mode and kill dominant samples of other physics
7 #
8 
9 import FWCore.ParameterSet.Config as cms
10 
11 singleJetTrigger = cms.EDFilter("QCDSingleJetFilter",
12  TriggerJetCollectionB = cms.InputTag("midPointCone7CaloJets"),
13  MinPt = cms.double(20.0),
14  TriggerJetCollectionA = cms.InputTag("midPointCone7CaloJets")
15 )
16 
17 muonTrigger = cms.EDFilter("HLTHighLevel",
18  HLTPaths = cms.vstring('HLT_Mu15_L1Mu7'),
19  byName = cms.bool(True),
20  andOr = cms.bool(True),
21  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
22 )
23 
24 electronTrigger = cms.EDFilter("HLTHighLevel",
25  HLTPaths = cms.vstring('HLT_IsoEle18_L1R'),
26  byName = cms.bool(True),
27  andOr = cms.bool(True),
28  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
29 )
30 
31 photonTrigger = cms.EDFilter("HLTHighLevel",
32  HLTPaths = cms.vstring('HLT_IsoPhoton40_L1R'),
33  byName = cms.bool(True),
34  andOr = cms.bool(True),
35  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
36 )
37 
38