FairRoot icon indicating copy to clipboard operation
FairRoot copied to clipboard

C++ simulation, reconstruction and analysis framework for particle physics experiments

Results 62 FairRoot issues
Sort by recently updated
recently updated
newest added

The behaviour of the FairTimeStamp::operator< does no follow standard behaviour by dealing with the FairTimeStamp* instead of a FairTimeStamp&. This is fixed in this merge request. Should fix issue #1519....

See: #1514 --- Checklist: * [ ] Followed the [Contributing Guidelines](https://github.com/FairRootGroup/FairRoot/blob/dev/CONTRIBUTING.md)

- [x] #1442 And refactor into FairFileSourceBase. --- Checklist: * [X] Followed the [Contributing Guidelines](https://github.com/FairRootGroup/FairRoot/blob/dev/CONTRIBUTING.md)

Waiting for: - [x] #1442 FairRootManager and FairRun both used to `delete` fSink and fSource. In specific situations (FairRootManager getting destructed before FairRun) this leads to a double delete! Deprecate...

It looks like fixing the geoloader leak in #1444 introduced a new issue: https://cdash.gsi.de/testDetails.php?test=19713169&build=448354 I was not quickly able to track down what exactly is the problem here. But it...

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.

We should be transparent on our release process. @dennisklein , @karabowi could you please help with this PR? Either add comments or add commits to the branch. (I'll squash things...

Use snprintf instead of sprintf The usage of sprintf is unsafe and deprecated. Use snprintf doesn't allow to overwrite the buffer and allow to check the length of the read...