CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
patRefSel_refAllJets_cfi.py
Go to the documentation of this file.
2 
5 
6 ### Muons
7 
8 ### Jets
9 
10 veryLoosePatJets = selectedPatJets.clone(
11  src = 'selectedPatJets'
12 , cut = '' # veryLooseJetCut
13 )
14 loosePatJets = selectedPatJets.clone(
15  src = 'veryLoosePatJets'
16 , cut = '' # looseJetCut
17 )
18 tightPatJets = selectedPatJets.clone(
19  src = 'loosePatJets'
20 , cut = '' # tightJetCut
21 )
22 
23 step3a = cms.EDFilter(
24  "PATCandViewCountFilter"
25 , src = cms.InputTag( 'selectedPatJets' )
26 , minNumber = cms.uint32( 6 )
27 , maxNumber = cms.uint32( 999999 )
28 )
29 step3b_1 = step3a.clone( src = 'tightPatJets' , minNumber = 4 )
30 step3b_2 = step3a.clone( src = 'loosePatJets' , minNumber = 5 )
31 step3b_3 = step3a.clone( src = 'veryLoosePatJets', minNumber = 6 )
32 
33 step3b = cms.Sequence(step3b_1 *
34  step3b_2 *
35  step3b_3
36  )