You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Memory leak which seems to have a strong effect on memory usage and performance when multiple matching candidates are saved. Fixed by introducing TrackRealigned class that deletes in destructor of the class.
Copy file name to clipboardExpand all lines: Common/Tasks/qaMuon.cxx
+23-7Lines changed: 23 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -241,6 +241,22 @@ struct muonQa {
241
241
Configurable<int64_t> nolaterthanRealign{"ccdb-no-later-than-new", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count(), "latest acceptable timestamp of creation for the object of new basis"};
242
242
} configCCDB;
243
243
244
+
// Derived version of mch::Track class that handles the associated clusters as internal objects and deletes them in the destructor
0 commit comments