Skip to content

Commit 98c9e4a

Browse files
authored
Merge pull request #307 from rest-for-physics/v2.3.13
V2.3.13
2 parents 1ef5062 + b540f58 commit 98c9e4a

File tree

10 files changed

+25
-27
lines changed

10 files changed

+25
-27
lines changed

README.md

+9-11
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,18 @@ I.e. Any file written after v2.2.1 should be readable without problems with any
6868

6969
A major change at 2.3 will prevent from backwards compatibility, since class names have been reviewed.
7070

71-
## Main authors and contributing institutions
72-
73-
* **Javier Galan, Igor G. Irastorza, Gloria Luzon** - *University of Zaragoza (Spain)*
74-
* **Ke Han, Kaixiang Ni** - *Shanghai Jiao Tong University (China)*
75-
* **Yann Bedfer, Damien Neyret** - *CEA Saclay (France)*
76-
* **Eduardo Picatoste, Cristian Cogollos** - *Universitat de Barcelona (Spain)*
77-
78-
See also the list of [contributors]() who participated in this project.
79-
8071
## Publications
8172

82-
- PandaX-III: Searching for neutrinoless double beta decay with high pressure 136Xe gas time projection chambers. [X. Chen et al., Science China Physics, Mechanics & Astronomy 60, 061011 (2017)](https://doi.org/10.1007/s11433-017-9028-0) [arXiv:1610.08883](https://arxiv.org/abs/1610.08883).
73+
- AlphaCAMM, a Micromegas-based camera for high-sensitivity screening of alpha surface contamination, [K. Altenmüller et al., Journal of Instrumentation, Volume 17, August 2022](https://doi.org/10.1088/1748-0221/17/08/P08035), [arXiv:2201.01859](https://doi.org/10.48550/arXiv.2201.01859).
74+
- REST-for-Physics, a ROOT-based framework for event oriented data analysis and combined Monte Carlo response, [K. Altenmüller, S. Cebrián, T. Dafni et al., , Computer Physics Communications, 108281, April 2022](https://doi.org/10.1016/j.cpc.2021.108281).
75+
- Topological background discrimination in the PandaX-III neutrinoless double beta decay experiment, [J Galan et al 2020 J. Phys. G: Nucl. Part. Phys. 47 045108](https://doi.org/10.1088/1361-6471/ab4dbe), [arxiv:1903.03979](https://doi.org/10.48550/arXiv.1903.03979).
8376
- Background assessment for the TREX Dark Matter experiment. [Castel, J., Cebrián, S., Coarasa, I. et al. Eur. Phys. J. C 79, 782 (2019)](https://doi.org/10.1140/epjc/s10052-019-7282-6). [arXiv:1812.04519](https://arxiv.org/abs/1812.04519).
84-
- Topological background discrimination in the PandaX-III neutrinoless double beta decay experiment. [J Galan et al 2020 J. Phys. G: Nucl. Part. Phys. 47 045108](https://doi.org/10.1088/1361-6471/ab4dbe). [arxiv:1903.03979]( https://arxiv.org/abs/1903.03979).
77+
- PandaX-III: Searching for neutrinoless double beta decay with high pressure 136Xe gas time projection chambers. [X. Chen et al., Science China Physics, Mechanics & Astronomy 60, 061011 (2017)](https://doi.org/10.1007/s11433-017-9028-0) [arXiv:1610.08883](https://arxiv.org/abs/1610.08883).
78+
79+
## Presentations
80+
- REST-for-Physics, Luis Obis, [2022-May, ROOT Users Workshop, FermiLab](https://indico.fnal.gov/event/23628/contributions/240755/).
81+
- REST v2.0 : A data analysis and simulation framework for micro-patterned readout detectors., Javier Galan, [2016-Dec, 8th Symposium on Large TPCs for low-energy rare event detection, Paris](https://indico.cern.ch/event/473362/contributions/2334838/).
82+
8583

8684
## License
8785

projects/iaxo

Submodule iaxo updated from ec08112 to 7220b93

scripts/installation/installGeant4.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

3-
if [ $(geant4-config --version | grep "10.4.2") ];then
3+
if [ $(geant4-config --version | grep "11.0.3") ];then
44

5-
echo Geant4 of version 10.4.2 has already been installed
5+
echo Geant4 of version 11.0.3 has already been installed
66
echo prefix:
77
echo $(geant4-config --prefix)
88
echo cflags:
@@ -13,7 +13,7 @@ else
1313
set -e
1414
WP=$PWD
1515

16-
G4_ROOT=geant4.10.04.p02
16+
G4_ROOT=geant4-v11.0.3
1717
G4_FILE=$G4_ROOT.tar.gz
1818

1919
echo installing: $G4_ROOT
@@ -31,7 +31,7 @@ tar xvf $G4_FILE
3131

3232
mkdir -p $G4_ROOT-build
3333
cd $G4_ROOT-build
34-
cmake ../$G4_ROOT -DGEANT4_USE_GDML=ON -DGEANT4_USE_QT=OFF -DCMAKE_INSTALL_PREFIX=$HOME/apps/$G4_ROOT-install -DGEANT4_INSTALL_DATA=ON -DGEANT4_INSTALL_DATA_TIMEOUT=7200
34+
cmake ../$G4_ROOT -DGEANT4_USE_GDML=ON -DGEANT4_USE_QT=OFF -DCMAKE_INSTALL_PREFIX=$HOME/apps/$G4_ROOT-install -DGEANT4_INSTALL_DATA=ON -DGEANT4_INSTALL_DATA_TIMEOUT=7200 -DCMAKE_CXX_STANDARD=17
3535
make -j30
3636
make install
3737
cd $WP

source/framework/core/inc/TRestVersion.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
* #endif
1212
*
1313
*/
14-
#define REST_RELEASE "2.3.12"
15-
#define REST_RELEASE_DATE "lun abr 25"
16-
#define REST_RELEASE_TIME "13:50:03 CEST 2022"
17-
#define REST_GIT_COMMIT "8a33774a"
18-
#define REST_VERSION_CODE 131852
14+
#define REST_RELEASE "2.3.13"
15+
#define REST_RELEASE_DATE "Thu 29 Sep"
16+
#define REST_RELEASE_TIME "2022 09:59:23 PM CEST"
17+
#define REST_GIT_COMMIT "46855729"
18+
#define REST_VERSION_CODE 131853
1919
#define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
2020
#define REST_SCHEMA_EVOLUTION "ON"
2121
#endif

source/libraries/detector

Submodule detector updated 83 files

source/libraries/geant4

Submodule geant4 updated 51 files

source/libraries/raw

Submodule raw updated 69 files

source/packages/restG4

Submodule restG4 updated 104 files

0 commit comments

Comments
 (0)