28 lines
630 B
Markdown
28 lines
630 B
Markdown
# Track Reconstruction
|
|
## Prerequisities
|
|
* System which runs CERN Root (Tested on MacOS High Sierra 10.13.4)
|
|
* CERN Root (Tested on 6.13/03)
|
|
|
|
## Build and run
|
|
* Clone this repository
|
|
|
|
```
|
|
git clone https://git.divaldo.hu/divaldo/TrackReconstruction.git
|
|
```
|
|
* Create a working directory
|
|
* Put [data.txt](https://drive.google.com/open?id=1AhsHk5Bti2BSbiLvmOsbojmx1d0PBeDV) there
|
|
* You can use make -jN to use N number of CPU cores to build the app
|
|
|
|
```
|
|
cd TrackReconstruction/
|
|
mkdir Build && cd Build
|
|
cmake ../
|
|
make
|
|
```
|
|
* If complete, you can run it with the following command:
|
|
|
|
```
|
|
./TrackReconstruction
|
|
```
|
|
* Use Ctrl + C to exit
|