CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Variables
topObjectSelection_cff Namespace Reference

Variables

tuple goodJets
 
tuple looseMuons
 
tuple tightMuons
 
tuple topObjectSelection
 
tuple vetoElecs
 
tuple vetoMuons
 

Variable Documentation

tuple topObjectSelection_cff.goodJets
Initial value:
1 = selectedPatJets.clone(
2  src = 'selectedPatJets',
3  cut =
4  'pt > 30. &'
5  'abs(eta) < 2.4 &'
6  'emEnergyFraction > 0.01 &'
7  'jetID.n90Hits > 1 &'
8  'jetID.fHPD < 0.98'
9 )

Definition at line 58 of file topObjectSelection_cff.py.

Referenced by HLTMETCleanerUsingJetID.produce().

tuple topObjectSelection_cff.looseMuons
Initial value:
1 = cleanPatMuons.clone(
2  preselection =
3  'isGlobalMuon & isTrackerMuon &'
4  'pt > 20. &'
5  'abs(eta) < 2.1 &'
6  '(trackIso+caloIso)/pt < 0.1 &'
7  'innerTrack.numberOfValidHits > 10 &'
8  'globalTrack.normalizedChi2 < 10.0 &'
9  'globalTrack.hitPattern.numberOfValidMuonHits > 0 &'
10  'abs(dB) < 0.02',
11  checkOverlaps = cms.PSet(
12  jets = cms.PSet(
13  src = cms.InputTag("goodJets"),
14  algorithm = cms.string("byDeltaR"),
15  preselection = cms.string(""),
16  deltaR = cms.double(0.3),
17  checkRecoComponents = cms.bool(False),
18  pairCut = cms.string(""),
19  requireNoOverlaps = cms.bool(True),
20  )
21  )
22 )

Definition at line 10 of file topObjectSelection_cff.py.

tuple topObjectSelection_cff.tightMuons
Initial value:
1 = cleanPatMuons.clone(
2  src = 'looseMuons',
3  preselection = '(trackIso+caloIso)/pt < 0.05'
4 )

Definition at line 33 of file topObjectSelection_cff.py.

tuple topObjectSelection_cff.topObjectSelection
Initial value:
1 = cms.Sequence(
2  goodJets *
3  vetoElecs *
4  vetoMuons *
5  looseMuons *
6  tightMuons
7  )

Definition at line 68 of file topObjectSelection_cff.py.

tuple topObjectSelection_cff.vetoElecs
Initial value:
1 = selectedPatElectrons.clone(
2  src = 'selectedPatElectrons',
3  cut =
4  'et > 15. &'
5  'abs(eta) < 2.5 &'
6  '(dr03TkSumPt+dr03EcalRecHitSumEt+dr03HcalTowerSumEt)/et < 0.2'
7  )

Definition at line 49 of file topObjectSelection_cff.py.

tuple topObjectSelection_cff.vetoMuons
Initial value:
1 = selectedPatMuons.clone(
2  src = 'selectedPatMuons',
3  cut =
4  'isGlobalMuon &'
5  'pt > 10. &'
6  'abs(eta) < 2.5 &'
7  '(trackIso+caloIso)/pt < 0.2'
8 )

Definition at line 39 of file topObjectSelection_cff.py.