diff --git a/src/ascent/runtimes/ascent_main_runtime.cpp b/src/ascent/runtimes/ascent_main_runtime.cpp index e8e0ea0d4..72e748bfe 100644 --- a/src/ascent/runtimes/ascent_main_runtime.cpp +++ b/src/ascent/runtimes/ascent_main_runtime.cpp @@ -354,7 +354,7 @@ AscentRuntime::ConvertToFlowGraph(const conduit::Node &pipeline, // can connect to the end result by pipeline name w.graph().add_filter("alias", pipeline_name); - + w.graph().connect(prev_name, // src pipeline_name, // dest 0); // default port @@ -436,7 +436,7 @@ AscentRuntime::ConvertExtractToFlow(const conduit::Node &extract, // this is the blueprint mesh extract_source = "source"; } - std::cout<<"***** extract source : "< pipelines = GetPipelines(scene["plots"]); std::vector plot_names = scene["plots"].child_names(); @@ -775,7 +775,7 @@ AscentRuntime::CreateScenes(const conduit::Node &scenes) bounds_output = union_bounds_names[union_size-1]; domain_ids_output = union_domain_ids_names[union_size-1]; } - + w.graph().connect(bounds_output, // src renders_name, // dest 0); // default port diff --git a/src/ascent/runtimes/flow_filters/ascent_runtime_vtkh_filters.cpp b/src/ascent/runtimes/flow_filters/ascent_runtime_vtkh_filters.cpp index 1380d32da..4ab74c855 100644 --- a/src/ascent/runtimes/flow_filters/ascent_runtime_vtkh_filters.cpp +++ b/src/ascent/runtimes/flow_filters/ascent_runtime_vtkh_filters.cpp @@ -871,7 +871,7 @@ VTKHSlice::verify_params(const conduit::Node ¶ms, { info.reset(); bool res = true; - params.print(); + if(! params.has_path("point/x") || ! params["point/y"].dtype().is_number() ) { @@ -945,7 +945,7 @@ VTKHSlice::execute() slicer.Update(); vtkh::DataSet *slice_output = slicer.GetOutput(); - + set_output(slice_output); } @@ -1102,7 +1102,7 @@ DefaultRender::execute() std::copy(domain_ids->begin(), domain_ids->end(), v_domain_ids.begin()); std::vector *renders = new std::vector(); - + if(params().has_path("renders")) { const conduit::Node renders_node = params()["renders"]; @@ -1356,7 +1356,6 @@ VTKHBounds::execute() vtkh::DataSet *data = input(0); bounds->Include(data->GetGlobalBounds()); - set_output(bounds); } @@ -1404,7 +1403,6 @@ VTKHUnionBounds::execute() vtkm::Bounds *bounds_a = input(0); vtkm::Bounds *bounds_b = input(1); - result->Include(*bounds_a); result->Include(*bounds_a); @@ -1678,7 +1676,7 @@ CreatePlot::verify_params(const conduit::Node ¶ms, info["errors"].append() = "Missing required string parameter 'type'"; res = false; } - params.print(); + if(! params.has_child("params") ) { info["errors"].append() = "Missing required parameter 'params'";