TRT_DriftCircleOnTrack : No need for mutable
No sure why
/**local angle to be written out */
mutable std::atomic<float> m_localAngle;
/**local position along wire to be written out*/
mutable std::atomic<float> m_positionAlongWire;
are mutable
If no mutable prb no need to be atomic . It is hard also to judge what atomic was protecting as these are never set other in ctor
?
Maybe there is some usage not visible directly from the code so lets see the CI