diff --git a/Control/IOVSvc/src/CondInputLoader.cxx b/Control/IOVSvc/src/CondInputLoader.cxx index 7788811f130ab991b3b0b4963f334c193632c423..4d646800a01dae726101067ffc6cc269cdceb19b 100644 --- a/Control/IOVSvc/src/CondInputLoader.cxx +++ b/Control/IOVSvc/src/CondInputLoader.cxx @@ -38,6 +38,14 @@ CondInputLoader::CondInputLoader( const std::string& name, // // Property declaration // + auto props = getProperties(); + for( Property* prop : props ) { + if (prop->name() == "ExtraOutputs" || prop->name() == "ExtraInputs") { + prop->declareUpdateHandler + (&CondInputLoader::extraDeps_update_handler, this); + } + } + declareProperty( "Load", m_load); //->declareUpdateHandler(&CondInputLoader::loader, this); declareProperty( "ShowEventDump", m_dump=false); @@ -287,3 +295,10 @@ CondInputLoader::execute() //----------------------------------------------------------------------------- +// need to override the handling of the DataObjIDs that's done by +// AthAlgorithm, so we don't inject the name of the Default Store +void +CondInputLoader::extraDeps_update_handler( Property& ExtraDeps ) +{ + // do nothing +} diff --git a/Control/IOVSvc/src/CondInputLoader.h b/Control/IOVSvc/src/CondInputLoader.h index b66b57a482f2c8649a46994333fa706cbe08f60c..b65171463a0bdd19317eae57e77561bd7951ee21 100644 --- a/Control/IOVSvc/src/CondInputLoader.h +++ b/Control/IOVSvc/src/CondInputLoader.h @@ -69,6 +69,10 @@ class CondInputLoader /// Default constructor: // CondInputLoader(); + // need to override the ExtraInputs/Outputs property handler + // from AthAlgorithm + void extraDeps_update_handler(Property&); + // void loader(Property&); /// Containers