This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
research:chisqsurface [2024/03/19 15:05] msovara |
research:chisqsurface [2024/03/19 15:53] (current) msovara |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ======chisqsurface===== | ======chisqsurface===== | ||
| - | At the moment, chisqsurface (https:// | + | At the moment, chisqsurface (https:// |
| <code bash> | <code bash> | ||
| - | module purge | + | $ module purge |
| - | module add chpc/ | + | $ module add chpc/ |
| - | conda activate root_env | + | $ git clone https:// |
| - | chisqsurface | + | $ cd chisqsurface |
| </ | </ | ||
| + | Now edit the first two lines of the Makefile by proving the path to the ROOT bin and lib directories. Query the ROOT bin and lib directories as follows | ||
| + | |||
| + | <code bash> | ||
| + | $ echo $CONDA_PREFIX | ||
| + | $ cd $CONDA_PREFIX | ||
| + | </ | ||
| + | Copy the full paths to the ROOT bin and lib directories and edit them into the first two lines of the Makefile using nano or vim or any text editor of your liking. | ||
| + | |||
| + | Now run the Makefile to compile the application: | ||
| + | <code bash> | ||
| + | $ make | ||
| + | </ | ||
| + | |||
| + | If compilation completes successfully, | ||
| + | |||
| + | <code bash> | ||
| + | $ chisqsurface | ||
| + | </ | ||
| + | |||
| + | Each time you run this software simply activate your ROOT conda environment **root_env** and then launch chisqsurface. | ||