This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
research:chisqsurface [2024/03/18 19:56] msovara created |
research:chisqsurface [2024/03/19 15:53] (current) msovara |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ======chisqsurface===== | ======chisqsurface===== | ||
| - | chisqsurface (https:// | + | At the moment, |
| <code bash> | <code bash> | ||
| - | git clone https:// | + | $ module purge |
| - | cd chisqsurface | + | $ module add chpc/ |
| + | $ git clone https:// | ||
| + | $ cd chisqsurface | ||
| </ | </ | ||
| - | You would have installed | + | 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. | ||
| + | |||