Variables | |
| logger = logging.getLogger('hpsmc.job') | |
| Initialize logger with default level. | |
| description | |
| filter_bunches = job.params['filter_bunches'] | |
| input_files = list(job.input_files.values()) | |
| Assign ptags for output. | |
| output_base = os.path.splitext(os.path.basename(input_files[0]))[0] | |
| filtered = FilterBunches() | |
| Insert empty bunches expected by pile-up simulation. | |
| readout = JobManager(steering='readout') | |
| Run simulated events in readout to generate triggers. | |
| count_readout = LCIOCount() | |
| reco = JobManager(steering='recon') | |
| Run physics reconstruction. | |
| count_reco = LCIOCount() | |
| cnv = HPSTR(cfg='recon') | |
| Convert LCIO to ROOT. | |
| ana = HPSTR(cfg='ana') | |
| Run an analysis on the ROOT file. | |
| ana = HPSTR(cfg='ana') |
Run an analysis on the ROOT file.
Definition at line 50 of file readout_recon_job.py.
| cnv = HPSTR(cfg='recon') |
Convert LCIO to ROOT.
Definition at line 47 of file readout_recon_job.py.
| count_readout = LCIOCount() |
Definition at line 39 of file readout_recon_job.py.
| count_reco = LCIOCount() |
Definition at line 44 of file readout_recon_job.py.
| description |
Definition at line 13 of file readout_recon_job.py.
| bool filter_bunches = job.params['filter_bunches'] |
Definition at line 16 of file readout_recon_job.py.
| filtered = FilterBunches() |
Insert empty bunches expected by pile-up simulation.
Definition at line 33 of file readout_recon_job.py.
| input_files = list(job.input_files.values()) |
Assign ptags for output.
Definition at line 21 of file readout_recon_job.py.
| logger = logging.getLogger('hpsmc.job') |
Initialize logger with default level.
Definition at line 11 of file readout_recon_job.py.
| output_base = os.path.splitext(os.path.basename(input_files[0]))[0] |
Definition at line 24 of file readout_recon_job.py.
| readout = JobManager(steering='readout') |
Run simulated events in readout to generate triggers.
Definition at line 37 of file readout_recon_job.py.
| reco = JobManager(steering='recon') |
Run physics reconstruction.
Definition at line 42 of file readout_recon_job.py.