This is the python-tool package of the Optics Measurements and Corrections team (OMC) at CERN.
Most of the codes are generic and not limited to CERN accelerators, and the package can easily be used for your favorite circular accelerator.
To see how to adapt this for your machine, see our documentation, Model section.
To contribute, see our guidelines on the OMC website.
- Autogenerated docs via
Sphinxcan be found at https://pylhc.github.io/omc3/. - General documentation of the OMC Team is located at https://pylhc.github.io/.
Installation is easily done via pip:
pip install omc3
For development purposes, we recommend creating a new virtual environment and installing from VCS in editable mode with all extra dependencies (cern for packages only available in the CERN GPN, test for pytest and relevant plugins, and doc for packages needed to build documentation)
git clone https://github.com/pylhc/omc3
pip install --editable "omc3[all]"Codes can then be run with either python -m omc3.SCRIPT --FLAG ARGUMENT or calling the .py file directly.
Main scripts to be executed lie in the /omc3 directory. These include:
global_correction.pyto calculate corrections from measurement files.hole_in_one.pyto perform frequency analysis on turn by turn BPM data and infer optics (and more) for a given accelerator.madx_wrapper.pyto start aMAD-Xrun with a file or string as input.model_creator.pyto generate optics models required for optics analysis.response_creator.pyto provide correction response files.run_kmod.pyto analyze data from K-modulation and return the measured optics functions.tbt_converter.pyto convert different turn by turn data types toSDDS, potentially adding noise.amplitude_detuning_analysis.pyto perform amp. det. analysis on optics data with tune correction.knob_extractor.pyto extract fromNXCALSthe value of given knobs in the machine at a given time.
Plotting scripts for analysis outputs can be found in /omc3/plotting:
plot_spectrum.pyto generate plots from files generated by frequency analysis.plot_bbq.pyto generate plots from files generated by BBQ analysis.plot_amplitude_detuning.pyto generate plots from files generated by amplitude detuning analysis.plot_optics_measurements.pyto generate plots from files generated by optics_measurements.plot_tfs.pyall-purpose tfs-file plotter.
Other general utility scripts are in /omc3/scripts:
update_nattune_in_linfile.pyto update the natural tune columns in the lin files by finding the highest peak in the spectrum in a given interval.write_madx_macros.pyto generateMAD-Xtracking macros with observation points from a TWISS file.merge_kmod_results.pyto merge LSA results files created by kmod, and add the luminosity imbalance if the 4 needed IP/Beam files combination are present.fake_measurement_from_model.pyto create a fake measurement based on a model TWISS file.betabeatsrc_output_converter.pyto convert outputs from our old codes toomc3's new standardized format.linfile_clean.pyto automatically clean given columns in lin files.
Example use for these scripts can be found in the tests files.
Documentation including relevant flags and parameters can be found at https://pylhc.github.io/omc3/.
This project is licensed under the MIT License - see the LICENSE file for details.