ATLAS Offline Software
Loading...
Searching...
No Matches
mc.Ep4_simple_OO.py
Go to the documentation of this file.
1evgenConfig.description = "Simple EPOS4 production of O+O collisions, with hydrodynamic evolution, and impact parameter b=0."
2evgenConfig.keywords = [ "minbias" ]
3evgenConfig.contact = [ "andrii.verbytskyi@mpp.mpg.de", "paulina.majchrzak@cern.ch" ]
4evgenConfig.nEventsPerJob = 10000
5evgenConfig.generators += ["Epos4"]
6
7include("Epos4_i/configFile.py")
8energy = float(runArgs.ecmEnergy) # center-of-mass energy
9number_of_events = int(getattr(runArgs, "maxEvents", evgenConfig.nEventsPerJob)) # number of events
10list_noDecayParticles = "20 2130 -2130 1330 -1330 2330 -2330 3331 -3331 2230 -2230 1130 -1130"
11
12laproj = 8 # projectile atomic number
13maproj = 16 # projectile mass number
14latarg = 8 # target atomic number
15matarg = 16 # target mass number
16
17content = build_config_content(energy, number_of_events, laproj, maproj, latarg, matarg, hydro=True) # creating an optns file for epos4 configuration
18with open("Epos4.optns", "w") as f:
19 f.write(content)
20
21
22include("Epos4_i/Epos4_Base_Fragment.py")
23
24#Disable energy and momentum test due to internal generator problem
25TestHepMC.EnergyImbalanceTest = False
26TestHepMC.MomImbalanceTest = False