-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changing weight table producer to write individual tables for weight …
…categories
- Loading branch information
Showing
4 changed files
with
90 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
lheWeightsTable = cms.EDProducer( | ||
"LHEWeightsTableProducer", | ||
lheWeights = cms.VInputTag(["externalLHEProducer", "source", "lheWeights"]), | ||
lheWeightPrecision = cms.int32(14), | ||
genWeights = cms.InputTag("genWeights"), | ||
# Warning: you can use a full string, but only the first character is read. | ||
# Note also that the capitalization is important! For example, 'parton shower' | ||
# must be lower case and 'PDF' must be capital | ||
weightgroups = cms.vstring(['scale', 'PDF', 'matrix element', 'unknown', 'parton shower']), | ||
# Max number of groups to store for each type above, -1 ==> store all found | ||
maxGroupsPerType = cms.vint32([-1, -1, -1, -1, 1]), | ||
# If empty or not specified, no critieria is applied to filter on LHAPDF IDs | ||
#pdfIds = cms.untracked.vint32([91400, 306000, 260000]), | ||
#unknownOnlyIfEmpty = cms.untracked.vstring(['scale', 'PDF']), | ||
#unknownOnlyIfAllEmpty = cms.untracked.bool(False), | ||
storeAllPSweights = cms.bool(False) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters