ATLAS Offline Software
jobOption.ParticleGun_fwd_sequence.py
Go to the documentation of this file.
1 #! -*- python -*-
2 
3 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
4 
5 include("EvgenProdTools/StdEvgenSetup.py")
6 theApp.EvtMax = 100
7 
8 import ParticleGun as PG
9 pg = PG.ParticleGun()
10 pg.randomSeed = 123456
11 pg.sampler.pid = (2112, 22, 2112, 22)
12 pg.sampler.mom = PG.EThetaMPhiSampler(energy=(1360000, 500000, 1360000, 500000),
13  theta=(0, 0, PG.PI, PG.PI))
14 pg.sampler.pos = PG.PosSampler(x=[-120,-100], y=[-10,10], z=203950)
15 topSeq += pg
16 
17 include("EvgenProdTools/postJO.CopyWeights.py")
18 include("EvgenProdTools/postJO.PoolOutput.py")
19 include("EvgenProdTools/postJO.DumpMC.py")
python.Include.include
include
Definition: Include.py:319