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.

19 lines
811 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 essentially forked from [this repo](https://gitlab.cern.ch/gunther/prforwardtracking-parametrisation-tuner/-/tree/master) by André Günther.
  4. This repository was used by Furkan Selim Cetin for work regarding his [Bachelorthesis](https://git.physi.uni-heidelberg.de/cetin/thesis).
  5. ## Setup
  6. There's a bash script for setting up the necessary (python) environment. Simply do:
  7. ```
  8. chmod +x setup.sh
  9. ./setup.sh
  10. ```
  11. This will install dependencies like ROOT and Jupyter. To enter the environment do:
  12. ```
  13. source env/tuner_env/bin/activate
  14. conda activate tuner
  15. ```