Installation Guide¶
This package has removed ROOT dependencies so one can use python3 (suggested!). For ease, this guide with assume one is using a virtual environment. Below shows how to set that up
Python3¶
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
Note: if you are new to virtual environments, to exit it, simply type deactivate. You will need to make sure virtual environment is activated every time you want to run the code
Quick Start¶
The two main scripts in this repo are for making plots and for setting up combine. The structures for both are fairly similar, especially since they both take the same input (VVAnalysis output files)
To run the plotting and combine code, simply type
./make_hist.py -i <infile> -a <Analysis> # Plotting code
./setup_combinepy -i <infile> -a <Analysis> -o <outdir> # Combine code
Or if you need more information, just run using the --help option