-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from lopezzot/lp-g411.2.1
Add geant-val fataset 1.3_1
- Loading branch information
Showing
5 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
export G4GCC_VERSION="12" | ||
export G4GCC_PLATFORM="x86_64-el9-gcc12-opt" | ||
export GEANT4_VERSION="11.2.p01" | ||
export GEANT4_PLATFORM="x86_64-el9-gcc12-optdeb-MT" | ||
export GCC_VERSION="12" | ||
export GCC_PLATFORM="x86_64-el9-gcc12-opt" | ||
|
||
source /cvmfs/sft.cern.ch/lcg/contrib/gcc/${G4GCC_VERSION}/${G4GCC_PLATFORM}/setup.sh | ||
source /cvmfs/geant4.cern.ch/geant4/${GEANT4_VERSION}/${GEANT4_PLATFORM}/bin/geant4.sh | ||
source /cvmfs/sft.cern.ch/lcg/contrib/gcc/${GCC_VERSION}/${GCC_PLATFORM}/setup.sh | ||
|
||
# Test path | ||
GVALPATH="/cvmfs/geant4.cern.ch/opt-geant-val/$GEANT4_VERSION/$GEANT4_PLATFORM/bin:/cvmfs/geant4.cern.ch/opt/$GEANT4_VERSION/$GEANT4_PLATFORM/bin" | ||
YOURPATH="@YOURPATH@" | ||
export PATH="$GVALPATH:$PATH:$YOURPATH" | ||
|
||
# Geant Val exports | ||
export VERSION=$GEANT4_VERSION | ||
export PLATFORM=$GEANT4_PLATFORM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
export ROOT_VERSION="6.30.06" | ||
export ROOT_PLATFORM="x86_64-almalinux9.3-gcc114-opt" | ||
export G4GCC_VERSION="12" | ||
export G4GCC_PLATFORM="x86_64-el9-gcc12-opt" | ||
export GEANT4_VERSION="11.2.p01" | ||
export GEANT4_PLATFORM="x86_64-el9-gcc12-optdeb-MT" | ||
export GCC_VERSION="12" | ||
export GCC_PLATFORM="x86_64-el9-gcc12-opt" | ||
|
||
source ./ATLTileCalTB_cvmfs_setup.sh | ||
|
||
export CC=$(command -v gcc) | ||
export CXX=$(command -v g++) | ||
cmake3 ../ATLTileCalTB $@ | ||
make -j$(nproc) | ||
|