Skip to content

Commit 538e3f5

Browse files
ChristianTackeGSIdennisklein
authored andcommitted
docs: breaking change of FairModule::svList
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
1 parent 32bb52f commit 538e3f5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7474
* `basemq/tasks/FairMQSamplerTask.h` -> `examples/advanced/Tutorial3/MQ/samplerTask/SamplerTask.h`
7575
* FairTimeStamp
7676
* `virtual bool operator<(const FairTimeStamp* rValue) const` changed to `bool operator<(const FairTimeStamp& rValue) const`
77+
* FairModule::svList is gone. This was never intended as a public
78+
API.
7779
7880
### Deprecations
7981

fairroot/base/sim/FairModule.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ class FairModule : public TNamed
140140
static thread_local inline FairVolumeList* vList{nullptr}; //!
141141
/**total number of volumes in a simulaion session*/
142142
static thread_local inline Int_t fNbOfVolumes{0}; //!
143-
/**list of all sensitive volumes in a simulaion session*/
143+
/**
144+
* For internal use only: list of all sensitive volumes in a simulaion session
145+
*/
144146
static thread_local std::vector<FairVolume*> fAllSensitiveVolumes; //!
145147

146148
TString fMotherVolumeName{""}; //!

0 commit comments

Comments
 (0)