Variables | |
description | |
inputs = list(job.input_files.values()) | |
Get job input file targets. More... | |
unzip = Unzip(inputs=inputs, outputs=["tritrig.lhe"]) | |
Unzip the LHE events to a local file. More... | |
cnv = StdHepConverter(inputs=inputs, outputs=['tritrig.stdhep']) | |
Convert LHE output to stdhep. More... | |
mom = AddMotherFullTruth(inputs=[cnv.output_files()[0], unzip.output_files()[0]], outputs=['tritrig_mom.stdhep']) | |
Add mother particle to tag trident particles. More... | |
rot = BeamCoords(inputs=['tritrig_mom.stdhep']) | |
Rotate events into beam coords. More... | |
slic = SLIC(inputs=rot.output_files()) | |
Simulate detector response. More... | |
cnv = StdHepConverter(inputs=inputs, outputs=['tritrig.stdhep']) |
Convert LHE output to stdhep.
Definition at line 18 of file tritrig_prep_and_slic_job.py.
description |
Definition at line 9 of file tritrig_prep_and_slic_job.py.
inputs = list(job.input_files.values()) |
Get job input file targets.
Definition at line 12 of file tritrig_prep_and_slic_job.py.
mom = AddMotherFullTruth(inputs=[cnv.output_files()[0], unzip.output_files()[0]], outputs=['tritrig_mom.stdhep']) |
Add mother particle to tag trident particles.
Definition at line 21 of file tritrig_prep_and_slic_job.py.
rot = BeamCoords(inputs=['tritrig_mom.stdhep']) |
Rotate events into beam coords.
Definition at line 24 of file tritrig_prep_and_slic_job.py.
Simulate detector response.
Definition at line 27 of file tritrig_prep_and_slic_job.py.
Unzip the LHE events to a local file.
Definition at line 15 of file tritrig_prep_and_slic_job.py.