From 17ef5a2e56c3133ef31611443e74a71dd86b2084 Mon Sep 17 00:00:00 2001 From: "Andrew.Tangborn" Date: Wed, 20 Nov 2024 18:21:51 +0000 Subject: [PATCH] Removed lines to write out filename_trcr --- utils/chem/chem_diagb.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/utils/chem/chem_diagb.h b/utils/chem/chem_diagb.h index 23995f0da..10fc6b5fe 100644 --- a/utils/chem/chem_diagb.h +++ b/utils/chem/chem_diagb.h @@ -239,17 +239,6 @@ namespace gdasapp { global_rescale.zero(); const eckit::LocalConfiguration GlobalRescaleStdConfig(GlobalRescaleConfig, "rescale stddev"); - // Get the 'datapath' and 'filename_trcr' from the YAML configuration - std::string datapath, filename_trcr; - GlobalRescaleStdConfig.get("datapath", datapath); - GlobalRescaleStdConfig.get("filename_trcr", filename_trcr); - - // Combine the path and filename to get the full file path - std::string fullPath = datapath + filename_trcr; - - // Print out the full path to verify - std::cout << "Attempting to read the global rescale file from: " << fullPath << std::endl; - global_rescale.read(GlobalRescaleStdConfig); // interpolate to background resolution fv3jedi::Increment global_rescale_interp(geom, global_rescale);