1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("PROD")
process.load("Configuration.StandardSequences.SimulationRandomNumberGeneratorSeeds_cff")
#process.source = cms.Source("EmptySource")
process.source = cms.Source("LHESource",
fileNames = cms.untracked.vstring('file:powheg-hvq.lhe')
)
# fileNames = cms.untracked.vstring('file:powheg-Zee.lhe')
process.generator = cms.EDFilter("Pythia8HadronizerFilter",
maxEventsToPrint = cms.untracked.int32(1),
pythiaPylistVerbosity = cms.untracked.int32(1),
filterEfficiency = cms.untracked.double(1.0),
pythiaHepMCVerbosity = cms.untracked.bool(False),
comEnergy = cms.double(7000.),
#Turning on pythia8 emission veto:
# PythiaParameters = cms.PSet(
# pythia8_example07 = cms.vstring('POWHEG:nFinal = 2',
# 'POWHEG:veto = 1',
# 'POWHEG:vetoCount = 10000',
# 'POWHEG:pThard = 1',
# 'POWHEG:pTemt = 0',
# 'POWHEG:emitted = 0',
# 'POWHEG:pTdef = 1',
# 'POWHEG:MPIveto = 0',
# 'SpaceShower:pTmaxMatch = 2',
# 'TimeShower:pTmaxMatch = 2'),
# parameterSets = cms.vstring('pythia8_example07')
# )
#Turning on CMSSW Pythia8Interface emission veto:
emissionVeto1 = cms.untracked.PSet(),
EV1_nFinal = cms.int32(2),
EV1_vetoOn = cms.bool(True),
EV1_maxVetoCount = cms.int32(10000),
EV1_pThardMode = cms.int32(1),
EV1_pTempMode = cms.int32(0),
EV1_emittedMode = cms.int32(0),
EV1_pTdefMode = cms.int32(1),
EV1_MPIvetoOn = cms.bool(False),
PythiaParameters = cms.PSet(
pythia8_example07 = cms.vstring('SpaceShower:pTmaxMatch = 2',
'TimeShower:pTmaxMatch = 2'),
parameterSets = cms.vstring('pythia8_example07')
)
)
#if emissionVeto is on && MPIveto > 0 add 'MultipartonInteractions:pTmaxMatch = 2'
process.load("FWCore.MessageLogger.MessageLogger_cfi")
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
cout = cms.untracked.PSet(
default = cms.untracked.PSet(
limit = cms.untracked.int32(2)
),
enable = cms.untracked.bool(True)
)
)
process.RandomNumberGeneratorService = cms.Service("RandomNumberGeneratorService",
generator = cms.PSet(
initialSeed = cms.untracked.uint32(123456789),
)
)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(100)
)
process.GEN = cms.OutputModule("PoolOutputModule",
fileName = cms.untracked.string('pythia8ex7.root')
)
process.p = cms.Path(process.generator)
process.outpath = cms.EndPath(process.GEN)
process.schedule = cms.Schedule(process.p, process.outpath)
|