You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
657 B

10 months ago
10 months ago
10 months ago
  1. # Parameterisation Tuner
  2. This project provides utils for producing magic parameters used by the pattern recognition algorithms in the Rec project. Typical parameters are coefficients for extrapolation polynomials and weights for TMVA methods.
  3. This is based on [this repo](https://gitlab.cern.ch/gunther/prforwardtracking-parametrisation-tuner/-/tree/master) by André Günther.
  4. ## Setup
  5. There's a bash script for setting up the necessary (python) environment. Simply do:
  6. ```
  7. chmod +x setup.sh
  8. ./setup.sh
  9. ```
  10. This will install dependencies like ROOT and Jupyter. To enter the environment do:
  11. ```
  12. source env/tuner_env/bin/activate
  13. conda activate tuner
  14. ```