Skip to content

Commit

Permalink
Merge pull request #6529 from davidlange6/miniaod_for_pre3
Browse files Browse the repository at this point in the history
get njettiness to be consistent with cc implementation
  • Loading branch information
davidlange6 committed Nov 21, 2014
2 parents 703d3bf + 652f918 commit b08e2d1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions RecoJets/JetProducers/python/nJettinessAdder_cfi.py
@@ -1,7 +1,15 @@
import FWCore.ParameterSet.Config as cms

Njettiness = cms.EDProducer("NjettinessAdder",
src=cms.InputTag("ca8PFJetsCHS"),
cone=cms.double(0.8),
Njets=cms.vuint32(1,2,3)
src=cms.InputTag("ak8PFJetsCHS"),
Njets=cms.vuint32(1,2,3), # compute 1-, 2-, 3- subjettiness
# variables for measure definition :
measureDefinition = cms.uint32( 1 ), # default is unnormalized measure
beta = cms.double(-999.0), # not used by default
R0 = cms.double( -999.0 ), # not used by default
Rcutoff = cms.double( -999.0), # not used by default
# variables for axes definition :
axesDefinition = cms.uint32( 6 ), # default is 1-pass KT axes
nPass = cms.int32(-999), # not used by default
axAxesR0 = cms.int32(-999) # not used by default
)

0 comments on commit b08e2d1

Please sign in to comment.