102 MPI_Comm_rank( MPI_COMM_WORLD, &rank);
108 DG_RANK0 std::cerr <<
"WARNING: probes field not found. No probes written to file!\n";
112 throw std::runtime_error(
"\"probes\" field not found!");
115 auto jsprobes = js[
"probes"];
116 std::string type = jsprobes[
"input"].
asString();
119 std::string path = jsprobes[
"file"].asString();
124 else if( type !=
"coords")
126 throw std::runtime_error(
"Error: Unknown coordinates input '"
130 auto coords = jsprobes[
"coords"];
134 unsigned ndim = coords[
"coords-names"].size();
136 std::string first = coords[
"coords-names"][0].asString();
139 for(
unsigned i=0; i<ndim; i++)
141 out.
coords_names[i] = coords[
"coords-names"][i].asString();
144 out.
probes = (num_pins > 0);
149 for(
unsigned i=0; i<ndim; i++)
152 out.
coords[i].resize(num_pins);
155 scale = jsprobes[
"scale"][i].asDouble();
156 for(
unsigned k=0; k<num_pins; k++)
159 .template get<double>()
167 out.
format = coords[
"format"].toStyledString();
JsonType file2Json(std::string filename, enum comments comm=file::comments::are_discarded, enum error err=file::error::is_throw)
Convenience wrapper to open a file and parse it into a JsonType.
Definition json_wrapper.h:347
ProbesParams parse_probes(const dg::file::WrappedJsonValue &js, enum error probes_err=file::error::is_silent)
Parse probe field in json file for use with Probes class.
Definition json_probes.h:96
error
Switch between how to handle errors in a Json utitlity functions.
Definition json_wrapper.h:42
@ is_warning
Handle the error by writing a warning to std::cerr.
@ is_silent
Ignore the error and silently continue execution.
@ is_throw
throw an error (std::runtime_error)
@ are_discarded
Allow comments but discard them in the Json value.
Definition easy_atts.h:15
Parameter struct for probe values.
Definition probes_params.h:15
std::vector< dg::HVec > coords
Coordinates list.
Definition probes_params.h:31
bool probes
Indicate existence of probes.
Definition probes_params.h:49
std::vector< std::string > coords_names
Name of coordinates (must have same size as coords)
Definition probes_params.h:32
std::string format
Optional format string for coords.
Definition probes_params.h:38
Wrapped Access to Json values with error handling.
Definition json_wrapper.h:121
std::string asString(std::string value="") const
Wrap the corresponding JsonType function with error handling.
Definition json_wrapper.h:258
bool isMember(std::string key) const
Return true if key is a Member of the json value.
Definition json_wrapper.h:166