Revision: | 1.1 |
Committed: | Wed Sep 23 16:01:17 2009 UTC (15 years, 7 months ago) by jueugste |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HEAD |
Log Message: | K-factor producer added... |
# | Content |
---|---|
1 | import FWCore.ParameterSet.Config as cms |
2 | |
3 | KFactorProducer = cms.EDProducer("HWWKFactorProducer", |
4 | inputFilename = cms.untracked.string('UserCode/ETHiggsNtuple/data/160_10TeV.dat'), |
5 | # PYTHIA Process to apply KFactor |
6 | ProcessID = cms.untracked.int32(102), |
7 | AltProcessID = cms.untracked.vint32(123, 124), |
8 | Debug =cms.untracked.bool(False), |
9 | UseNNLO = cms.untracked.bool(False) |
10 | ) |