CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pdfSystematics_cff.py
Go to the documentation of this file.
2 
3 # Produce PDF weights (maximum is 3)
4 pdfWeights = cms.EDProducer("PdfWeightProducer",
5  # Fix POWHEG if buggy (this PDF set will also appear on output,
6  # so only two more PDF sets can be added in PdfSetNames if not "")
7  #FixPOWHEG = cms.untracked.string("cteq66.LHgrid"),
8  #GenTag = cms.untracked.InputTag("genParticles"),
9  PdfInfoTag = cms.untracked.InputTag("generator"),
10  PdfSetNames = cms.untracked.vstring(
11  "cteq66.LHgrid"
12  , "MRST2006nnlo.LHgrid"
13  , "NNPDF10_100.LHgrid"
14  )
15  )
16 
17 # Produce event weights to estimate missing O(alpha) terms + NLO QED terms
18 fsrWeight = cms.EDProducer("FSRWeightProducer",
19  GenTag = cms.untracked.InputTag("genParticles"),
20  )
21 
22 
23 # Produce event weights to estimate missing weak terms (=> include missing rho factor for Z diagrams)
24 weakWeight = cms.EDProducer("WeakEffectsWeightProducer",
25  GenParticlesTag = cms.untracked.InputTag("genParticles"),
26  RhoParameter = cms.untracked.double(1.004)
27  )
28 
29 
30 
31