Skip to content

Commit

Permalink
docs: breaking change of FairModule::svList
Browse files Browse the repository at this point in the history
The FairModule::svList API was dropped in 19.0.
It was thought of as an internal API anyway. But let's
at least document
- that it's gone
- that the new fAllSensitiveVolumes IS an internal API

See: 54ad232
  • Loading branch information
ChristianTackeGSI authored and dennisklein committed Jun 12, 2024
1 parent 32bb52f commit 538e3f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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

0 comments on commit 538e3f5

Please sign in to comment.