Warning, /acts/Traccc/extras/physics_plots/README.md is written in an unsupported language. File is not indexed.
0001 # Physics plot generators
0002
0003 This directory contains code to produce traccc physics plots. To gather data,
0004 run the `run_seeding_example.py` script with a compiled CUDA seeding example:
0005
0006 ```bash
0007 $ python run_seeding_example.py .../build/bin/traccc_seeding_example_cuda output_directory
0008 ```
0009
0010 This will produce CSV data in the directory `output_directory`. Use this data
0011 as input to the plot generator:
0012
0013 ```bash
0014 $ python make_plots.py -i output_directory "Current commit" plot_directory
0015 ```
0016
0017 This will produce a series of plots in `plot_directory`. To make comparison
0018 plots, provide multiple input directories, such as:
0019
0020 ```bash
0021 $ python make_plots.py -i output_directory1 "Current commit" -i output_directory2 "Previous commit" plot_directory
0022 ```