-
Notifications
You must be signed in to change notification settings - Fork 11
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 #497 from rest-for-physics/release_v2.4.1
Release v2.4.1
- Loading branch information
Showing
9 changed files
with
29 additions
and
26 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 |
---|---|---|
@@ -1,22 +1,23 @@ | ||
#ifndef REST_Version | ||
#define REST_Version | ||
/* Version information automatically generated by installer. */ /* | ||
* These macros can be used in the following | ||
* way: | ||
* | ||
* #if REST_VERSION_CODE >= | ||
* REST_VERSION(2,23,4) #include <newheader.h> | ||
* #else | ||
* #include <oldheader.h> | ||
* #endif | ||
* | ||
*/ | ||
#define REST_RELEASE "2.4.0" | ||
#define REST_RELEASE_DATE "Fri 16 Jun" | ||
#define REST_RELEASE_TIME "2023 03:03:21 PM CEST" | ||
#define REST_RELEASE_NAME "Alexander Friedmann" | ||
#define REST_GIT_COMMIT "9ef81f6e" | ||
#define REST_VERSION_CODE 131856 | ||
/* This header has been generated using scripts/generateVersionHeader.py */ | ||
|
||
/* | ||
* The macros defined here can be used in the following way: | ||
* | ||
* #if REST_VERSION_CODE >= REST_VERSION(2,23,4) | ||
* #include <newheader.h> | ||
* #else | ||
* #include <oldheader.h> | ||
* #endif | ||
* | ||
*/ | ||
#define REST_RELEASE "2.4.1" | ||
#define REST_RELEASE_DATE "Sat Dec 16" | ||
#define REST_RELEASE_TIME "11:14:21 CET 2023" | ||
#define REST_RELEASE_NAME "Igor G. Irastorza" | ||
#define REST_GIT_COMMIT "6b9d0650" | ||
#define REST_VERSION_CODE 132097 | ||
#define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c)) | ||
#define REST_SCHEMA_EVOLUTION "ON" | ||
#endif |
Submodule axion
updated
14 files
+1 −1 | CMakeLists.txt | |
+10 −3 | README.md | |
+1 −1 | data | |
+3 −1 | inc/TRestAxionBufferGas.h | |
+0 −82 | inc/TRestAxionDetectorResponseProcess.h | |
+29 −2 | inc/TRestAxionField.h | |
+136 −0 | macros/REST_Axion_PlotResonances.C | |
+0 −0 | pipeline/metadata/solarFlux/solarPlotQCD.py | |
+1 −1 | pipeline/ray-tracing/full-chain/ValidateChain.C | |
+60 −5 | src/TRestAxionBufferGas.cxx | |
+0 −122 | src/TRestAxionDetectorResponseProcess.cxx | |
+4 −4 | src/TRestAxionEventProcess.cxx | |
+132 −75 | src/TRestAxionField.cxx | |
+13 −0 | src/TRestAxionFieldPropagationProcess.cxx |
Submodule connectors
updated
12 files
Submodule detector
updated
90 files
Submodule geant4
updated
39 files
Submodule raw
updated
50 files
Submodule track
updated
13 files
Submodule restG4
updated
7 files
+1 −0 | .github/CODEOWNERS | |
+1 −1 | .github/pr-badge.yml | |
+1 −0 | CMakeLists.txt | |
+57 −0 | examples/12.Generators/CryGenerator.rml | |
+66 −0 | examples/13.IAXO/Muons.rml | |
+4 −0 | examples/13.IAXO/Neutrons.rml | |
+11 −0 | src/PrimaryGeneratorAction.cxx |