Skip to content
Snippets Groups Projects
Commit f0f08121 authored by Scott Snyder's avatar Scott Snyder Committed by Walter Lampl
Browse files

PixelConditionsAlgorithms: Fix initialization hack.

PixelCablingCondAlg::initialize() is recording a conditions object
to be read by SiRegionSeletorTable::initialize().  However, it was
doing this with an unbounded IOV range, which then collides with
any other IOV ranges that may be added later.

Change so that the range for this hack covers only run number 0,
so it won't collide with any real IOV ranges.
parent 81dd0301
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#include "PixelCablingCondAlg.h"
......@@ -51,7 +51,7 @@ StatusCode PixelCablingCondAlg::initialize() {
const EventIDBase::number_type UNDEFNUM = EventIDBase::UNDEFNUM;
const EventIDBase::event_number_t UNDEFEVT = EventIDBase::UNDEFEVT;
EventIDRange rangeW (EventIDBase (0, UNDEFEVT, UNDEFNUM, 0, 0),
EventIDBase (UNDEFNUM-1, UNDEFEVT, UNDEFNUM, 0, 0));
EventIDBase (1, UNDEFEVT, UNDEFNUM, 0, 0));
// Signed values
int barrel_ec, eta_module;
......
......@@ -13,6 +13,7 @@ atlas_depends_on_subdirs( PUBLIC
InnerDetector/InDetConditions/PixelConditionsData
InnerDetector/InDetDetDescr/SCT_Cabling
PRIVATE
Control/AthenaKernel
DetectorDescription/Identifier
DetectorDescription/IRegionSelector
InnerDetector/InDetDetDescr/InDetIdentifier
......@@ -29,7 +30,7 @@ atlas_add_component( InDetRegionSelector
src/*.cxx
src/components/*.cxx
INCLUDE_DIRS ${TDAQ-COMMON_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS}
LINK_LIBRARIES ${TDAQ-COMMON_LIBRARIES} ${CLHEP_LIBRARIES} AthenaBaseComps RegSelLUT GaudiKernel PixelConditionsData SCT_CablingLib Identifier InDetIdentifier InDetReadoutGeometry TRT_ReadoutGeometry TRT_CablingLib )
LINK_LIBRARIES ${TDAQ-COMMON_LIBRARIES} ${CLHEP_LIBRARIES} AthenaBaseComps RegSelLUT GaudiKernel PixelConditionsData SCT_CablingLib Identifier InDetIdentifier InDetReadoutGeometry TRT_ReadoutGeometry TRT_CablingLib AthenaKernel )
# Install files from the package:
atlas_install_headers( InDetRegionSelector )
......
......@@ -36,7 +36,7 @@ public:
private:
StatusCode createTable();
StatusCode createTable (const EventContext& ctx);
RegSelSiLUT* m_regionLUT;
......
......@@ -15,6 +15,9 @@
#include "RegSelLUT/RegSelModule.h"
#include "RegSelLUT/RegSelSiLUT.h"
#include "AthenaKernel/ExtendedEventContext.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include "CLHEP/Units/SystemOfUnits.h"
#include <iostream>
......@@ -76,7 +79,12 @@ SiRegionSelectorTable::initialize(){
ATH_CHECK(m_condCablingKey.initialize());
ATH_MSG_WARNING("So far, this prevents the conditions migration!! The createTable() should NOT be used in the initilization step...");
ATH_CHECK(createTable());
const EventIDBase::number_type UNDEFNUM = EventIDBase::UNDEFNUM;
const EventIDBase::event_number_t UNDEFEVT = EventIDBase::UNDEFEVT;
EventContext ctx = Gaudi::Hive::currentContext();
ctx.setEventID (EventIDBase (0, UNDEFEVT, UNDEFNUM, 0, 0));
Atlas::getExtendedEventContext(ctx).setConditionsRun (0);
ATH_CHECK(createTable (ctx));
return StatusCode::SUCCESS;
}
......@@ -101,7 +109,7 @@ RegSelSiLUT* SiRegionSelectorTable::getLUT()
StatusCode
SiRegionSelectorTable::createTable()
SiRegionSelectorTable::createTable (const EventContext& ctx)
{
if ( msgLvl(MSG::DEBUG) ) msg(MSG::DEBUG) << "Creating region selector table" << endmsg;
......@@ -131,7 +139,7 @@ SiRegionSelectorTable::createTable()
else rd = new RegSelSiLUT(RegSelSiLUT::SCT);
SG::ReadCondHandle<PixelCablingCondData> pixCabling(m_condCablingKey);
SG::ReadCondHandle<PixelCablingCondData> pixCabling(m_condCablingKey, ctx);
SiDetectorElementCollection::const_iterator iter;
for (iter = manager->getDetectorElementBegin(); iter != manager->getDetectorElementEnd(); ++iter){
......
......@@ -35,6 +35,7 @@ if TriggerFlags.doID():
# Pixel
StreamBS.ItemList += ["PixelRDO_Container#*"]
StreamBS.ExtraInputs += [('PixelHitDiscCnfgData','ConditionStore+PixelHitDiscCnfgData')]
StreamBS.ExtraInputs += [('PixelCablingCondData','ConditionStore+PixelCablingCondData')]
if TriggerFlags.doCalo():
# LAr
......
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