HPS-MC
hpstr_job.py
Go to the documentation of this file.
1 """!
2 @file hpstr_job.py
3 
4 HPSTR reconstruction and analysis.
5 """
6 from hpsmc.tools import HPSTR
7 
8 job.description = 'HPSTR recon and analysis'
9 
10 
11 cnv = HPSTR(cfg='recon')
12 
13 
14 ana = HPSTR(cfg='ana')
15 
16 job.add([cnv, ana])
Run the hpstr analysis tool.
Definition: tools.py:344
Tools that can be used in HPSMC jobs.
Definition: tools.py:1