Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default python values for new parameters introduced with PR 5255 (73x version) #5562

Merged
merged 1 commit into from
Sep 26, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# Select which collections to use for isolation. You can select one or both
ApplyDiscriminationByECALIsolation = cms.bool(True), # use PFGammas when isolating
ApplyDiscriminationByTrackerIsolation = cms.bool(True), # use PFChargedHadr when isolating
ApplyDiscriminationByWeightedECALIsolation = cms.bool(False), #do not use pileup weighting of neutral deposits by default

applyOccupancyCut = cms.bool(True), # apply a cut on number of isolation objects
maximumOccupancy = cms.uint32(0), # no tracks > 1 GeV or gammas > 1.5 GeV allowed
Expand Down Expand Up @@ -50,5 +51,8 @@
applyRhoCorrection = cms.bool(False),
rhoProducer = cms.InputTag("fixedGridRhoFastjetAll"),
rhoConeSize = cms.double(0.5),
rhoUEOffsetCorrection = cms.double(1.0)
rhoUEOffsetCorrection = cms.double(1.0),
UseAllPFCandsForWeights = cms.bool(False),
verbosity = cms.int32(0)

)