Skip to content
Snippets Groups Projects
Commit b4861a76 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'attrList.TileConditions-20200222' into 'master'

TileConditions: Avoid copying AttributeList.

See merge request atlas/athena!30553
parents 9fe45990 fb4b2fc6
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!30553TileConditions: Avoid copying AttributeList.
//Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
// Tile includes
......@@ -134,7 +134,7 @@ StatusCode TileDCSCondAlg::execute(const EventContext& ctx) const {
if (m_readHV) {
SG::ReadCondHandle<CondAttrListCollection> hv(m_hvKey, ctx);
for (const CondAttrListCollection::ChanAttrListPair chanAttrListPair : **hv) {
for (const CondAttrListCollection::ChanAttrListPair& chanAttrListPair : **hv) {
const CondAttrListCollection::ChanNum coolChannel = chanAttrListPair.first;
......@@ -173,7 +173,7 @@ StatusCode TileDCSCondAlg::execute(const EventContext& ctx) const {
if (m_readHVSet) {
SG::ReadCondHandle<CondAttrListCollection> hvSet(m_hvSetKey, ctx);
for (const CondAttrListCollection::ChanAttrListPair chanAttrListPair : **hvSet) {
for (const CondAttrListCollection::ChanAttrListPair& chanAttrListPair : **hvSet) {
const CondAttrListCollection::ChanNum coolChannel = chanAttrListPair.first;
......@@ -218,7 +218,7 @@ StatusCode TileDCSCondAlg::execute(const EventContext& ctx) const {
if (m_readStates) {
SG::ReadCondHandle<CondAttrListCollection> states(m_statesKey, ctx);
for (const CondAttrListCollection::ChanAttrListPair chanAttrListPair : **states) {
for (const CondAttrListCollection::ChanAttrListPair& chanAttrListPair : **states) {
CondAttrListCollection::ChanNum coolChannel = chanAttrListPair.first;
......
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#undef NDEBUG
#include "CxxUtils/checker_macros.h"
ATLAS_NO_CHECK_FILE_THREAD_SAFETY;
#include "TileConditions/TileDCSState.h"
#include "TileConditions/TileCalibData.h"
#include "../src/TileDCSCondAlg.h"
......
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