CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ExHuME_CEPDijetsGG_M100_10TeV_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from GeneratorInterface.ExhumeInterface.ExhumeParameters_cfi import ExhumeParameters as ExhumeParametersRef
4 
5 generator = cms.EDFilter("ExhumeGeneratorFilter",
6  PythiaParameters = cms.PSet(
7  parameterSets = cms.vstring()
8  ),
9  ExhumeParameters = ExhumeParametersRef,
10  comEnergy = cms.double(10000.),
11  pythiaHepMCVerbosity = cms.untracked.bool(False),
12  maxEventsToPrint = cms.untracked.int32(2),
13  pythiaPylistVerbosity = cms.untracked.int32(1),
14  ExhumeProcess = cms.PSet(
15  ProcessType = cms.string('GG'),
16  ThetaMin = cms.double(0.30),
17  MassRangeLow = cms.double(100.0),
18  MassRangeHigh = cms.double(9999.0)
19  )
20 )