CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/GeneratorInterface/AMPTInterface/python/amptLowMultiplicity_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 configurationMetadata = cms.untracked.PSet(
00004     version = cms.untracked.string('$Revision: 1.1 $'),
00005     name = cms.untracked.string('$Source: /local/reps/CMSSW/CMSSW/GeneratorInterface/AMPTInterface/python/amptLowMultiplicity_cfi.py,v $'),
00006     annotation = cms.untracked.string('AMPT generator')
00007 )
00008 
00009 source = cms.Source("EmptySource")
00010 
00011 from GeneratorInterface.AMPTInterface.amptDefaultParameters_cff import *
00012 generator = cms.EDFilter("AMPTGeneratorFilter",
00013                          amptDefaultParameters,
00014                          firstEvent = cms.untracked.uint32(1),
00015                          firstRun = cms.untracked.uint32(1),
00016 
00017                          comEnergy = cms.double(2760.0),
00018                          frame = cms.string('CMS'),                         
00019                          proj = cms.string('A'),
00020                          targ = cms.string('A'),
00021                          iap  = cms.int32(208),
00022                          izp  = cms.int32(82),
00023                          iat  = cms.int32(208),
00024                          izt  = cms.int32(82),
00025                          bMin = cms.double(0),
00026                          bMax = cms.double(30)
00027                          )
00028 
00029 
00030 highMultiplicityGenFilter = cms.EDFilter("HighMultiplicityGenFilter",
00031   ptMin = cms.untracked.double(0.4),
00032   etaMax = cms.untracked.double(2.4),
00033   nMin = cms.untracked.int32(150)
00034 )
00035 
00036  
00037 ProductionFilterSequence = cms.Sequence(generator * ~highMultiplicityGenFilter)