Warning, file /include/Acts/Plugins/Json/AmbiguityConfigJsonConverter.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include "Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.hpp"
0012
0013 #include <map>
0014 #include <utility>
0015 #include <vector>
0016
0017 #include <nlohmann/json.hpp>
0018
0019 namespace Acts {
0020
0021 using DetectorConfig = ScoreBasedAmbiguityResolution::DetectorConfig;
0022 using ConfigPair =
0023 std::pair<std::map<std::size_t, std::size_t>, std::vector<DetectorConfig>>;
0024
0025
0026 void from_json(const nlohmann::json& j, ConfigPair& p);
0027
0028 }