-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MRG: Merge branch main into features/melinatorcosiupdates
- Loading branch information
Showing
48 changed files
with
992 additions
and
380 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/bin/bash | ||
|
||
# Tool to check the configuration used to compile MEGAlib | ||
|
||
commandhelp() { | ||
echo "" | ||
echo "megalib-config"; | ||
echo "Copyright by Andreas Zoglauer" | ||
echo "" | ||
echo "Shows MEGAlib configuration options" | ||
echo "" | ||
echo "Usage: megalib-config [options]"; | ||
echo "" | ||
echo "Options:" | ||
echo " --compiler : Version of the compiler used during configuration" | ||
echo " --python3 : Version of python3 used during configuration" | ||
echo " --root : Version of ROOT used during configuration" | ||
echo " --geant4 : Version of Geant4 used during configuration" | ||
echo " --help : Show this help" | ||
echo "" | ||
} | ||
|
||
|
||
# Store command line as array | ||
CMD=( "$@" ) | ||
MACHINESSTRING="" | ||
|
||
# Check for help | ||
for C in "${CMD[@]}"; do | ||
if [[ ${C} == --help ]]; then | ||
echo "" | ||
commandhelp | ||
exit 0 | ||
fi | ||
done | ||
|
||
|
||
for C in "${CMD[@]}"; do | ||
if [[ ${C} == --compiler ]]; then | ||
cat $MEGALIB/config/Configuration.txt | grep "COMPILER" | awk -F= '{print $2}' | ||
elif [[ ${C} == --python3 ]]; then | ||
cat $MEGALIB/config/Configuration.txt | grep "PYTHON3" | awk -F= '{print $2}' | ||
elif [[ ${C} == --root ]]; then | ||
cat $MEGALIB/config/Configuration.txt | grep "ROOT" | awk -F= '{print $2}' | ||
elif [[ ${C} == --geant4 ]]; then | ||
cat $MEGALIB/config/Configuration.txt | grep "GEANT4" | awk -F= '{print $2}' | ||
elif [[ ${C} == *-h* ]]; then | ||
echo "" | ||
commandhelp | ||
exit 0 | ||
fi | ||
done | ||
|
||
exit 0 |
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
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,6 @@ | ||
|
||
|
||
for P in `ls *.cxx`; do | ||
make -f ${MEGALIB}/resource/standalone/Makefile.standalone PRG=${P} | ||
done | ||
|
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,47 @@ | ||
# Benchmark summary file | ||
|
||
HostName: callisto | ||
|
||
OSFlavour: ubuntu | ||
OSVersion: 22.04 | ||
Kernel: 5.19.0-46-generic | ||
|
||
CPUModel: Intel(R) Core(TM) i7-4558U CPU @ 2.80GHz | ||
CPUName: i7-4558U | ||
CPUSockets: 1 | ||
CPUCoresPerSocket: 2 | ||
CPUThreadsPerCore: 2 | ||
Cores: 2 | ||
Threads: 4 | ||
|
||
ROOTVersion: 6.28/04 | ||
Geant4Version: 10.2.3 | ||
|
||
MEGAlibVersion: 3.99.02 | ||
MEGAlibGitHash: 08b49f84e201ebaf3691011a9fceaec3c65daaa5 2023-07-10 | ||
MEGAlibOptimization: -O -DNDEBUG | ||
|
||
# Cosima | ||
DurationCosimaSingle: 36.294 | ||
EventsPerSecondCosimaSingle: 2755.276 | ||
DurationCosimaMultiple: 63.256 | ||
EventsPerSecondCosimaMultiple: 6323.510 | ||
|
||
# Revan | ||
DurationRevanSingle: 8.409 | ||
EventsPerSecondRevanSingle: 11892.020 | ||
DurationRevanMultiple: 12.547 | ||
EventsPerSecondRevanMultiple: 31880.130 | ||
|
||
# ResponseCreator | ||
DurationResponseCreatorSingle: 18.994 | ||
EventsPerSecondResponseCreatorSingle: 5264.820 | ||
DurationResponseCreatorMultiple: 42.131 | ||
EventsPerSecondResponseCreatorMultiple: 9494.196 | ||
|
||
# MimrecImaging | ||
DurationMimrecImagingSingle: 70.112 | ||
EventsPerSecondMimrecImagingSingle: 1426.289 | ||
DurationMimrecImagingMultiple: 33.153 | ||
EventsPerSecondMimrecImagingMultiple: 3016.318 | ||
|
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,47 @@ | ||
# Benchmark summary file | ||
|
||
HostName: io | ||
|
||
OSFlavour: macOS | ||
OSVersion: 13.4.1 | ||
Kernel: 22.5.0 | ||
|
||
CPUModel: Intel(R) Core(TM) i5-2415M CPU @ 2.30GHz | ||
CPUName: i5-2415M | ||
CPUSockets: 1 | ||
CPUCoresPerSocket: 2 | ||
CPUThreadsPerCore: 2 | ||
Cores: 2 | ||
Threads: 4 | ||
|
||
ROOTVersion: 6.28/04 | ||
Geant4Version: 10.2.3 | ||
|
||
MEGAlibVersion: 3.99.02 | ||
MEGAlibGitHash: ab0bd75a1f7945060fbe97ed19a6e7209a7efb7d 2023-07-10 | ||
MEGAlibOptimization: -O -DNDEBUG | ||
|
||
# Cosima | ||
DurationCosimaSingle: 68.194 | ||
EventsPerSecondCosimaSingle: 1466.404 | ||
DurationCosimaMultiple: 118.714 | ||
EventsPerSecondCosimaMultiple: 3369.442 | ||
|
||
# Revan | ||
DurationRevanSingle: 19.238 | ||
EventsPerSecondRevanSingle: 5198.045 | ||
DurationRevanMultiple: 18.737 | ||
EventsPerSecondRevanMultiple: 21348.134 | ||
|
||
# ResponseCreator | ||
DurationResponseCreatorSingle: 33.686 | ||
EventsPerSecondResponseCreatorSingle: 2968.592 | ||
DurationResponseCreatorMultiple: 65.550 | ||
EventsPerSecondResponseCreatorMultiple: 6102.212 | ||
|
||
# MimrecImaging | ||
DurationMimrecImagingSingle: 103.211 | ||
EventsPerSecondMimrecImagingSingle: 968.888 | ||
DurationMimrecImagingMultiple: 48.047 | ||
EventsPerSecondMimrecImagingMultiple: 2081.295 | ||
|
Oops, something went wrong.