Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
* `basemq/tasks/FairMQSamplerTask.h` -> `examples/advanced/Tutorial3/MQ/samplerTask/SamplerTask.h`
* FairTimeStamp
* `virtual bool operator<(const FairTimeStamp* rValue) const` changed to `bool operator<(const FairTimeStamp& rValue) const`
* FairModule::svList is gone. This was never intended as a public
API.

### Deprecations

Expand Down
4 changes: 3 additions & 1 deletion fairroot/base/sim/FairModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ class FairModule : public TNamed
static thread_local inline FairVolumeList* vList{nullptr}; //!
/**total number of volumes in a simulaion session*/
static thread_local inline Int_t fNbOfVolumes{0}; //!
/**list of all sensitive volumes in a simulaion session*/
/**
* For internal use only: list of all sensitive volumes in a simulaion session
*/
static thread_local std::vector<FairVolume*> fAllSensitiveVolumes; //!

TString fMotherVolumeName{""}; //!
Expand Down