Skip to content

Commit

Permalink
For some reason njettiness now checks the sign of the default values
Browse files Browse the repository at this point in the history
  • Loading branch information
rappoccio committed Nov 16, 2015
1 parent 22eecfd commit 31a54c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RecoJets/JetProducers/python/nJettinessAdder_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
measureDefinition = cms.uint32( 0 ), # CMS default is normalized measure
beta = cms.double(1.0), # CMS default is 1
R0 = cms.double( 0.8 ), # CMS default is jet cone size
Rcutoff = 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 ), # CMS default is 1-pass KT axes
nPass = cms.int32(-999), # not used by default
akAxesR0 = cms.double(-999.0) # not used by default
nPass = cms.int32(999), # not used by default
akAxesR0 = cms.double(999.0) # not used by default
)

0 comments on commit 31a54c1

Please sign in to comment.