-
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.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
Configuration/Generator/python/PSweightsPythia/PythiaPSweightsSettings_cfi.py
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,20 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
pythia8PSweightsSettingsBlock = cms.PSet( | ||
pythia8PSweightsSettings = cms.vstring( | ||
'UncertaintyBands:doVariations = on', | ||
# 3 sets of variations for ISR&FSR up/down | ||
# Reduced sqrt(2)/(1/sqrt(2)), Default 2/0.5 and Conservative 4/0.25 variations | ||
'UncertaintyBands:List = {\ | ||
isrRedHi isr:muRfac=0.707,fsrRedHi fsr:muRfac=0.707,isrRedLo isr:muRfac=1.414,fsrRedLo fsr:muRfac=1.414,\ | ||
isrDefHi isr:muRfac=0.5, fsrDefHi fsr:muRfac=0.5,isrDefLo isr:muRfac=2.0,fsrDefLo fsr:muRfac=2.0,\ | ||
isrConHi isr:muRfac=0.25, fsrConHi fsr:muRfac=0.25,isrConLo isr:muRfac=4.0,fsrConLo fsr:muRfac=4.0}', | ||
|
||
'UncertaintyBands:MPIshowers = on', | ||
'UncertaintyBands:overSampleFSR = 10.0', | ||
'UncertaintyBands:overSampleISR = 10.0', | ||
'UncertaintyBands:FSRpTmin2Fac = 20', | ||
'UncertaintyBands:ISRpTmin2Fac = 1' | ||
) | ||
) | ||
|