From ce81070084782e2b26ca972afccaee71de864e1b Mon Sep 17 00:00:00 2001 From: dwfncar Date: Mon, 18 Sep 2023 20:22:04 -0600 Subject: [PATCH] Added CAMP_FILES constant string. --- include/micm/configure/solver_config.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/micm/configure/solver_config.hpp b/include/micm/configure/solver_config.hpp index bb8511f41..e7e138b9e 100644 --- a/include/micm/configure/solver_config.hpp +++ b/include/micm/configure/solver_config.hpp @@ -102,6 +102,7 @@ namespace micm std::vector processes_; // Constants + // find names from config.json // Configure files static const inline std::string SPECIES_CONFIG = "species.json"; static const inline std::string MECHANISM_CONFIG = "mechanism.json"; @@ -110,6 +111,7 @@ namespace micm // Common JSON static const inline std::string CAMP_DATA = "camp-data"; + static const inline std::string CAMP_FILES = "camp-files"; static const inline std::string TYPE = "type"; // Functions @@ -118,6 +120,8 @@ namespace micm /// @return True for successful parsing ConfigParseStatus Parse(const std::filesystem::path& config_dir) { + // Look for CAMP_FILES here + // Create configure paths std::filesystem::path species_config(config_dir / SPECIES_CONFIG); std::filesystem::path mechanism_config(config_dir / MECHANISM_CONFIG); @@ -784,4 +788,4 @@ namespace micm } }; -} // namespace micm \ No newline at end of file +} // namespace micm