Skip to content
Snippets Groups Projects
Commit a8ed4cfc authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

DerivationFrameworkLLP: fix uninitialized variable

parent 18e11c0f
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
*/
/////////////////////////////////////////////////////////////////
......@@ -62,7 +62,7 @@ namespace DerivationFramework {
// Struct to hold all decorators
struct moments_t;
moments_t* m_moments;
moments_t* m_moments{};
// The filter object that will apply the grooming
std::unique_ptr<fastjet::Filter> m_trimmer;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment