CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
amptLowMultiplicity_cfi.py
Go to the documentation of this file.
2 
3 configurationMetadata = cms.untracked.PSet(
4  version = cms.untracked.string('$Revision: 1.2 $'),
5  name = cms.untracked.string('$Source: /local/projects/CMSSW/rep/CMSSW/GeneratorInterface/AMPTInterface/python/amptDefault_cfi.py,v $'),
6  annotation = cms.untracked.string('AMPT generator')
7 )
8 
9 source = cms.Source("EmptySource")
10 
12 generator = cms.EDFilter("AMPTGeneratorFilter",
13  amptDefaultParameters,
14  firstEvent = cms.untracked.uint32(1),
15  firstRun = cms.untracked.uint32(1),
16 
17  comEnergy = cms.double(2760.0),
18  frame = cms.string('CMS'),
19  proj = cms.string('A'),
20  targ = cms.string('A'),
21  iap = cms.int32(208),
22  izp = cms.int32(82),
23  iat = cms.int32(208),
24  izt = cms.int32(82),
25  bMin = cms.double(0),
26  bMax = cms.double(30)
27  )
28 
29 
30 highMultiplicityGenFilter = cms.EDFilter("HighMultiplicityGenFilter",
31  ptMin = cms.untracked.double(0.4),
32  etaMax = cms.untracked.double(2.4),
33  nMin = cms.untracked.int32(150)
34 )
35 
36 
37 ProductionFilterSequence = cms.Sequence(generator * ~highMultiplicityGenFilter)