Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 _generator = cms.EDFilter("AMPTGeneratorFilter",
0004     diquarky = cms.double(0.0),
0005     diquarkx = cms.double(0.0),
0006     diquarkpx = cms.double(7.0),
0007     ntmax = cms.int32(1000),
0008     dpcoal = cms.double(1000000.0),
0009     diquarkembedding = cms.int32(0),
0010     maxmiss = cms.int32(1000),
0011     ktkick = cms.int32(1),
0012     mu = cms.double(3.2264),
0013     quenchingpar = cms.double(2.0),
0014     popcornpar = cms.double(1.0),
0015     drcoal = cms.double(1000000.0),
0016     amptmode = cms.int32(1),
0017     izpc = cms.int32(0),
0018     popcornmode = cms.bool(True),
0019     minijetpt = cms.double(-7.0),
0020     ks0decay = cms.bool(False),
0021     alpha = cms.double(0.47140452),
0022     dt = cms.double(0.2),
0023     rotateEventPlane = cms.bool(True),
0024     shadowingmode = cms.bool(True),
0025     diquarkpy = cms.double(0.0),
0026     deuteronfactor = cms.int32(5),
0027     stringFragB = cms.double(0.9),#default value in Hijing. Good for pA
0028     quenchingmode = cms.bool(False),
0029     stringFragA = cms.double(0.5),
0030     deuteronmode = cms.int32(0),
0031     doInitialAndFinalRadiation = cms.int32(3),
0032     phidecay = cms.bool(True),
0033     deuteronxsec = cms.int32(1),
0034     pthard = cms.double(2.0),
0035     firstRun = cms.untracked.uint32(1),
0036     frame = cms.string('CMS'),
0037     targ = cms.string('P'),
0038     izp = cms.int32(82),
0039     bMin = cms.double(0),
0040     firstEvent = cms.untracked.uint32(1),
0041     izt = cms.int32(1),
0042     proj = cms.string('A'),
0043     comEnergy = cms.double(5020.0),
0044     iat = cms.int32(1),
0045     bMax = cms.double(15),
0046     iap = cms.int32(208)
0047 )
0048 
0049 from GeneratorInterface.Core.ExternalGeneratorFilter import ExternalGeneratorFilter
0050 generator = ExternalGeneratorFilter(_generator)
0051 
0052 configurationMetadata = cms.untracked.PSet(
0053     version = cms.untracked.string('$Revision$'),
0054     name = cms.untracked.string('$Source$'),
0055     annotation = cms.untracked.string('AMPT PPb 5020 GeV Minimum Bias')
0056 )
0057