Dennis Klein
Dennis Klein
https://github.com/rpm-software-management/mock/blob/4b3fb22e2f74a17bf7879395b6f6418192430163/mock/py/mockbuild/plugins/rpmautospec.py#L61-L62 This check fails for [git submodules](https://git-scm.com/docs/git-submodule) and [multiple git worktrees](https://git-scm.com/docs/git-worktree) (in such cases the `.git` file may not be a directory). Since [`rpmautospec` already depends on `pygit2`](https://github.com/fedora-infra/rpmautospec/blob/c4086b9d22ec83cb76e06247cc37764152eeda36/pyproject.toml#L47) I propose...
For #482. Replacing zenodo release pull with github push on release is an exercise for another day. (Once we merge this, I will make a tag to see if the...
We often get this on device shutdown, investigate, if this is an issue in our code: ``` Direct leak of 75 byte(s) in 1 object(s) allocated from: #0 0x7fa56832d68f in...
This warning appears on recent compiler versions in multiple places: ``` /fairroot/base/event/FairTimeStamp.h:77:18: warning: ‘virtual bool FairTimeStamp::operator
Currently, we have inaccuracies in the clang-tidy warning analysis because `clang-tidy` output lines are not preserved as complete lines.
Fix #1495
It is not finished, especially there is an open point still where I added the "TODO" comment. But I wanted to start the discusssion if this is the right approach.
https://github.com/FairRootGroup/FairRoot/commit/386912ebcc7877927980cbbf7ef46a32dddc3e4b introduced a double linear search of the volume on `vList` in [`FairModule::AddSensitiveVolume`](https://github.com/FairRootGroup/FairRoot/blame/00249b0fc465bace608c4a3c5a9291e015c86895/base/sim/FairModule.cxx#L295-L311): 1. search happens [here](https://github.com/FairRootGroup/FairRoot/commit/386912ebcc7877927980cbbf7ef46a32dddc3e4b#diff-81dfd931f93b7bdaaa11c1651c35692da18a0e7ff3513022304b7f12bdb6d06eR196) 2. search happens [here](https://github.com/FairRootGroup/FairRoot/commit/386912ebcc7877927980cbbf7ef46a32dddc3e4b#diff-81dfd931f93b7bdaaa11c1651c35692da18a0e7ff3513022304b7f12bdb6d06eR199), see [`FairVolumeList::addVolume`](https://github.com/FairRootGroup/FairRoot/commit/386912ebcc7877927980cbbf7ef46a32dddc3e4b#diff-81dfd931f93b7bdaaa11c1651c35692da18a0e7ff3513022304b7f12bdb6d06eR199) Possible fix involves changing the error behaviour...
Starting from CMake 3.22 it is supported to use `` instead of ``, see [gitlab.kitware.com/cmake/cmake/-/commit/373608831099bf96f568d9db5cb12a3f9092edf4](https://gitlab.kitware.com/cmake/cmake/-/commit/373608831099bf96f568d9db5cb12a3f9092edf4). Let's adopt this once we bump minimum required CMake version to 3.22+.
Our own examples should not use deprecated functionality (e.g. `ex_sim_tutorial2_run_signal2`, but we should make sure to update all examples).