HPS-MC
 
Loading...
Searching...
No Matches
phi_lhe_to_recon_job.py
Go to the documentation of this file.
1"""!
2@file phi_lhe_to_recon.py
3
4Simulation of phi meson to charged kaon decays, detector signals, and readout, followed by reconstruction.
5"""
6from hpsmc.generators import MG5
7from hpsmc.tools import SLIC, JobManager, FilterBunches, BeamCoords, Unzip, DisplaceUni
8
9job.description = 'Phi lhe to recon'
10
11
12cnv = Phi_LHE_to_STDHEP(inputs=['phi.lhe'], outputs=['phi.stdhep'])
13
14
16
17
18slic = SLIC()
19
20
21filter_bunches = FilterBunches()
22
23
24readout = JobManager(steering='readout')
25
26
27recon = JobManager(steering='recon')
28
29
30job.add([cnv, rot, slic, filter_bunches, readout, recon])
Transform StdHep events into beam coordinates.
Definition tools.py:721
Space MC events and apply energy filters to process before readout.
Definition tools.py:1275
Run the hps-java JobManager class.
Definition tools.py:231
Run the SLIC Geant4 simulation.
Definition tools.py:16
Tools that can be used in HPSMC jobs.
Definition tools.py:1