Skip to content

Commit

Permalink
Merge pull request cms-sw#17767 from cms-tau-pog/CMSSW_9_1_X_tau-pog-…
Browse files Browse the repository at this point in the history
…removeNullTaus

Switching off reconstruction of so called "NullTaus"
  • Loading branch information
davidlange6 authored Mar 13, 2017
2 parents 46ebbd2 + b09eb1b commit e8cf191
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# optional collection of muons to check for overlap with taus
srcMuons = cms.InputTag('muons'),
dRmuonMatch = cms.double(0.3),
# JetArea is not defined for subjects and restiction to jetArea is turned to dRMatch=0.1, so better use the latter explicitely
# JetArea is not defined for subjets and restiction to jetArea is turned to dRMatch=0.1, so better use the latter explicitely
dRmuonMatchLimitedToJetArea = cms.bool(False),
minPtMatchedMuon = cms.double(5.),

Expand Down
5 changes: 3 additions & 2 deletions RecoTauTag/RecoTau/python/RecoTauCombinatoricProducer_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,10 @@
minJetPt = PFRecoTauPFJetInputs.minJetPt,
maxJetAbsEta = PFRecoTauPFJetInputs.maxJetAbsEta,
jetRegionSrc = cms.InputTag("recoTauAK4PFJets08Region"),
chargedHadronSrc = cms.InputTag('ak4PFJetsRecoTauChargedHadrons'),
chargedHadronSrc = cms.InputTag('ak4PFJetsRecoTauChargedHadrons'),
piZeroSrc = cms.InputTag("ak4PFJetsRecoTauPiZeros"),
buildNullTaus = cms.bool(True),
buildNullTaus = cms.bool(False),
outputSelection = cms.string("leadPFChargedHadrCand().isNonnull()"), # MB: always require that leading PFChargedHadron candidate exists
# Make maximum size from which to collect isolation cone objects, w.r.t to
# the axis of the signal cone objects
builders = cms.VPSet(
Expand Down

0 comments on commit e8cf191

Please sign in to comment.