2018-06-07 14:02:33 +02:00
|
|
|
# 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
|
|
|
|
```
|
2018-06-07 18:41:21 +02:00
|
|
|
* Create a working directory
|
2018-06-11 13:37:04 +02:00
|
|
|
* Put [data.txt](https://drive.google.com/open?id=1AhsHk5Bti2BSbiLvmOsbojmx1d0PBeDV) there (available in Debug folder)
|
2018-06-07 14:02:33 +02:00
|
|
|
* You can use make -jN to use N number of CPU cores to build the app
|
|
|
|
|
|
|
|
```
|
2018-06-07 18:41:21 +02:00
|
|
|
cd TrackReconstruction/
|
|
|
|
mkdir Build && cd Build
|
2018-06-07 14:02:33 +02:00
|
|
|
cmake ../
|
|
|
|
make
|
|
|
|
```
|
|
|
|
* If complete, you can run it with the following command:
|
|
|
|
|
|
|
|
```
|
|
|
|
./TrackReconstruction
|
|
|
|
```
|
|
|
|
* Use Ctrl + C to exit
|
2018-06-11 13:37:04 +02:00
|
|
|
|
|
|
|
## Changelog
|
|
|
|
### 2018.06.11
|
|
|
|
* Complete new reader function
|
|
|
|
* Writing some debug data to terminal
|
|
|
|
* Should work with two or more chambers
|