Skip to content
Snippets Groups Projects

Draft: Switch to rapidyaml for loading conditions

Open Arthur Marius Hennequin requested to merge ahennequ_ryml into master
3 unresolved threads
Compare and
25 files
+ 298
220
Compare changes
  • Side-by-side
  • Inline
Files
25
@@ -24,16 +24,16 @@
#include <map>
#include <memory>
#include <ryml.hpp>
#include <string>
#include <vector>
#include <yaml-cpp/yaml.h>
/// Namespace for the Gaudi framework
namespace LHCb::Detector {
struct ConditionOverrideEntry {
std::string path;
std::string name;
YAML::Node value;
std::string path;
std::string name;
dd4hep::Condition condition;
};
using ConditionsOverrides = std::vector<ConditionOverrideEntry>;
Loading