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

Merge branch 'egammatools' into 'master'

egammaTools: fix build failure due to CaloDetDescrManager migration

See merge request atlas/athena!46937
parents be374695 2a9beb20
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
#include "egammaLargeClusterMaker.h"
......@@ -224,7 +224,7 @@ egammaLargeClusterMaker::execute(const EventContext& ctx,
// If FCAL need to add cell to cluster in a cone
std::vector<const CaloCell*> cells;
cells.reserve(300);
CaloCellList myList( dd_man,cellcoll.ptr());
CaloCellList myList(calodetdescrmgr, cellcoll.ptr());
myList.select(cluster->etaSample(sam), cluster->phiSample(sam), m_drFWD,(CaloSampling::CaloSample)sam);
cells.insert(cells.end(), myList.begin(), myList.end());
......
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