Skip to content
Snippets Groups Projects
Commit b9b05b68 authored by Jiri Masik's avatar Jiri Masik
Browse files

Merge branch 'fwinkl_20241216T195656' into '24.0'

TrigEgammaEmulationTool: fix uninitialized variables

See merge request !76772
parents c291b35c 784098b0
No related branches found
No related tags found
2 merge requests!768302024-12-18: merge of 24.0 into main,!76772TrigEgammaEmulationTool: fix uninitialized variables
/*
* Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
* Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
......@@ -61,15 +61,15 @@ class TrigData{
std::string signature;
// L1 object
const TrigRoiDescriptor *roi;
const TrigRoiDescriptor *roi{};
// L1 legacy object
const xAOD::EmTauRoI *l1;
const xAOD::EmTauRoI *l1{};
// Step 1 cluster
const xAOD::TrigEMCluster *emCluster;
const xAOD::TrigEMCluster *emCluster{};
// Step 1 rings
const xAOD::TrigRingerRings *rings;
const xAOD::TrigRingerRings *rings{};
// Step 2 photon object
const xAOD::TrigPhoton* trig_photon;
const xAOD::TrigPhoton* trig_photon{};
// Step 3 clusters
std::vector<const xAOD::CaloCluster*> clusters;
// Step 2 electrons
......
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