A Dash application to visualize the observables and parameters of a collider built and configured with Xsuite.
Project description
Collider Dashboard
A Dash application to visualize the observables and parameters of a collider built and configured with Xsuite.
Installation
The dashboard can be installed from PyPI with pip:
pip install collider-dashboard
This will install the required packages and build the application. If you haven't done it already, it is recommended to prebuild the Xsuite kernel to gain some computation time:
xsuite-prebuild
Usage
For personal usage, the simplest way to use the dashboard is to run the package as a development server from the command line, providing a few arguments:
python -m collider_dashboard --collider-path path_to_collider.json --filling-path path_to_scheme.json --port 8080 --force-reload --ignore-footprint --full-twiss --type-particles proton --debug
--collider-path
, or-c
, sets the path to the collider configuration file. Default value to the path of a dummy collider used for testing.--filling-path
, or-f
, sets the path to the filling scheme, instead of using the one in the collider configuration file. Optional.--port
, or-p
, sets the port on which the dashboard will be deployed. Default value to `8080``.--force-reload
, or-r
, sets a boolean indicating whether the collider dashboard data should be reloaded if already existing. Optional.--ignore-footprint
, or-i
, sets a boolean indicating whether the footprint should be ignored to gain computation time. Optional.--full-twiss
, or-t
, sets a boolean indicating whether the Twiss/Survey tables should be computed fully (not removing duplicates and entry/exit elements), at the expense of computation time. Optional.--type-particles
, or-a
, sets the type of particles to be used for the collider. Default value toproton
.--debug
, or-d
, sets a boolean indicating whether the dashboard should be run in debug mode. Optional.
After computing some temporary variables (this may take a while the first time), this will deploy a local server and open the dashboard in a browser window.
Alternatively, one can import the dashboard as a module and use it in a custom script:
# my-awesome-dashboard.py
from collider_dashboard import build_app
app, server = build_app(path_to_collider.json,
path_scheme=path_to_scheme.json,
port=8080,
force_reload=False,
ignore_footprint=False,
debug = False,
simplify_tw=True
type_particles='proton'
)
The dashboard can then be deployed e.g. with gunicorn:
gunicorn my-awesome-dashboard:server -b :8080
Note that, as the dashboard deals with global variables, it is not thread-safe. It is therefore recommended to run it with a single worker (it's the case by default).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file collider_dashboard-1.4.1.0.tar.gz
.
File metadata
- Download URL: collider_dashboard-1.4.1.0.tar.gz
- Upload date:
- Size: 3.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.10 Linux/5.15.0-100-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd8c4473d7b02cd56f22aa8f978725508475a29725451937e8345c5cc29e2f99 |
|
MD5 | ebbe51090cc05518ea70f9906a6f8935 |
|
BLAKE2b-256 | c24cd26d129b65e412065decb68916e0f960326b9837008ebc412f784e06ce34 |
File details
Details for the file collider_dashboard-1.4.1.0-py3-none-any.whl
.
File metadata
- Download URL: collider_dashboard-1.4.1.0-py3-none-any.whl
- Upload date:
- Size: 4.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.10 Linux/5.15.0-100-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb00c0bdf683c0dc928457ff250c58fc9a041807f0c77225d6754f19209535b5 |
|
MD5 | c342abdc1e8ea793fc83b09cea230c97 |
|
BLAKE2b-256 | 6fe97cf500c25d7dbd128dba8dcb8adcc0e057d1adb4d5a4542fe12f41b022e0 |