Luis Antonio Obis Aparicio
Luis Antonio Obis Aparicio
I was unable to compile the REST-for-Physics framework on a macbook (M1). There are some errors related to the `TRestHits_Iterator` class. Looks like these were warnings on previous version of...
(Apologies if this was present already in another issue, I could not find it). Currently the `TRestAnalysisTree` class is derived from `TTree`. This has some implications, for example you cannot...
Update all uses of the previous image to the new image at https://github.com/rest-for-physics/rest-docker. The image currently labeled as "reference" used for old Geant4 version (10.4.3) validatioon will remain the same...
Update all uses of the previous image to the new image at https://github.com/rest-for-physics/rest-docker. The image currently labeled as "reference" used for old Geant4 version (10.4.3) validatioon will remain the same...
When debugging the following PR: https://github.com/rest-for-physics/framework/pull/365 I found an error in the GitHub Actions workflow. It seems that the caching of the framework is instead restoring the cache (because a...
More info: https://github.com/rest-for-physics/framework/pull/373 A new PR in each submodule which created the corresponding pre-commit configuration files and performs an initial formatting.
Some colleages that were installing REST-for-Physics for the first time understood from the documentation that REST is compatible with ROOT >6 but it failed to install on v6.22.02 even though...
  [](https://gitlab.cern.ch/rest-for-physics/framework/-/commits/lobis-get-field-value) [](https://github.com/rest-for-physics/framework/commits/lobis-get-field-value) This PR was made to allow `TRestMetadata::GetFieldValue` to have a default value, instead of returning "Not defined". However I could not make it work, there...
When a library is set to be compiled, a preprocessor definition is defined (see https://github.com/rest-for-physics/framework/blob/master/cmake/MacroRootDict.cmake#L523) to tell other libraries that the corresponding library exists. For example if the detector library...
Originally [startup.cpp](https://github.com/rest-for-physics/framework/blob/master/source/framework/core/src/startup.cpp) caused problems with unit testing and to fix this we [added](https://github.com/rest-for-physics/framework/pull/129) an early return if testing was enabled: ``` #ifdef REST_TESTING_ENABLED return; #endif ``` This doesn't seem to...