Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.9.0 for FCCAnalyses #148

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fast-sim-and-analysis/FccFastSimGeneration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ for example `../FCCAnalyses`.

```
$ cd ..
$ git clone https://github.com/HEP-FCC/FCCAnalyses.git
$ git clone --branch v0.9.0 https://github.com/HEP-FCC/FCCAnalyses.git
$ cd FCCAnalyses; mkdir {build,install}; cd build
$ cmake -DCMAKE_INSTALL_PREFIX=../install ..
$ make -j4 install
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

# FCC: Analysing simulated events

Let's first clone and build ```FCCAnalyses```.
Let's first clone and build `FCCAnalyses`.

```bash
git clone https://github.com/HEP-FCC/FCCAnalyses.git
git clone --branch v0.9.0 https://github.com/HEP-FCC/FCCAnalyses.git
cd FCCAnalyses
source ./setup.sh
mkdir build install && cd build
Expand Down Expand Up @@ -710,8 +710,8 @@ def get_file_path(url, filename):
weaver_preproc = get_file_path(url_preproc, local_preproc)
weaver_model = get_file_path(url_model, local_model)

from addons.ONNXRuntime.python.jetFlavourHelper import JetFlavourHelper
from addons.FastJet.python.jetClusteringHelper import (
from addons.ONNXRuntime.jetFlavourHelper import JetFlavourHelper
from addons.FastJet.jetClusteringHelper import (
ExclusiveJetClusteringHelper,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For this tutorial we will need to develop some code inside FCCAnalyses, thus we
Go inside the area that you have setup for the tutorials and get the FCCAnalyses code:

```shell
git clone https://github.com/HEP-FCC/FCCAnalyses.git
git clone --branch v0.9.0 https://github.com/HEP-FCC/FCCAnalyses.git
```

Go inside the directory and run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For this tutorial we will need to use FCCAnalyses. We can either use it from the
Go inside the area that you have setup for the tutorials and get the FCCAnalyses code:

```shell
git clone https://github.com/HEP-FCC/FCCAnalyses.git
git clone --branch v0.9.0 https://github.com/HEP-FCC/FCCAnalyses.git
```

Go inside the directory and run
Expand Down
Loading