CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
jetExtractorBlock_cff.py
Go to the documentation of this file.
2 
3 # -*-TCL-*-
5 MIsoJetExtractorBlock = cms.PSet(
6  MIsoTrackAssociatorJets,
7  PrintTimeReport = cms.untracked.bool(False),
8  #subtract sumEt of towers falling into the muon-veto region
9  ExcludeMuonVeto = cms.bool(True),
10  ComponentName = cms.string('JetExtractor'),
11  DR_Max = cms.double(1.0),
12  PropagatorName = cms.string('SteppingHelixPropagatorAny'),
13  ServiceParameters = cms.PSet(
14  Propagators = cms.untracked.vstring( 'SteppingHelixPropagatorAny' ),
15  RPCLayers = cms.bool( False ),
16  UseMuonNavigation = cms.untracked.bool( False )
17  ),
18  DR_Veto = cms.double(0.1),
19  #count a jet if et> threshold
20  #note: et from crossed towers and jet towers inside the veto cone are not counted
21  Threshold = cms.double(5.0),
22  # InputTag JetCollectionLabel = midPointCone5CaloJets
23  # JetCollectionLabel = cms.InputTag("sisCone5CaloJets")
24  JetCollectionLabel = cms.InputTag("ak4CaloJets")
25 )
26 
27