Skip to content
Snippets Groups Projects
Commit 7d13f22a authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

Merge branch 'ut-readouttool-fix-condition-path-dd4hep' into 'master'

Fix UT readout map condition path in UTReadoutTool for dd4hep

See merge request !3951
parents dc165464 427d9b80
No related branches found
No related tags found
1 merge request!3951Fix UT readout map condition path in UTReadoutTool for dd4hep
Pipeline #5074220 passed
......@@ -119,8 +119,15 @@ private:
std::string header( const std::string& conString ) const;
std::string strip( const std::string& conString ) const;
Gaudi::Property<bool> m_printMapping{this, "printMapping", false};
ConditionAccessor<YAML::Node> m_readoutMap{this, "conditionLocation", "/dd/Conditions/ReadoutConf/UT/ReadoutMap"};
Gaudi::Property<bool> m_printMapping{this, "printMapping", false};
ConditionAccessor<YAML::Node> m_readoutMap{this, "conditionLocation",
#ifdef USE_DD4HEP
"/world/BeforeMagnetRegion/UT:ReadoutMap"
#else
"/dd/Conditions/ReadoutConf/UT/ReadoutMap"
#endif
};
Gaudi::Property<std::string> m_footer{this, "footer", "</DDDB>"};
Gaudi::Property<std::string> m_startTag{this, "startTag", "<condition"};
......
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