CMS 3D CMS Logo

amptDefault_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 source = cms.Source("EmptySource")
4 
6 generator = cms.EDFilter("AMPTGeneratorFilter",
7  amptDefaultParameters,
8  firstEvent = cms.untracked.uint32(1),
9  firstRun = cms.untracked.uint32(1),
10 
11  comEnergy = cms.double(2760.0),
12  frame = cms.string('CMS'),
13  proj = cms.string('A'),
14  targ = cms.string('A'),
15  iap = cms.int32(208),
16  izp = cms.int32(82),
17  iat = cms.int32(208),
18  izt = cms.int32(82),
19  bMin = cms.double(0),
20  bMax = cms.double(30)
21  )
22 
23 configurationMetadata = cms.untracked.PSet(
24  version = cms.untracked.string('$Revision: 1.1 $'),
25  name = cms.untracked.string('$Source: /cvs_server/repositories/CMSSW/CMSSW/GeneratorInterface/AMPTInterface/python/amptDefault_cfi.py,v $'),
26  annotation = cms.untracked.string('AMPT generator')
27  )
28 
29 
30 
31 
32