Skip to content
Snippets Groups Projects
Commit 01fcf00f authored by Lukas Werner's avatar Lukas Werner
Browse files

Explicitly disable tbuffer output in config reading constructor

parent 7843d822
Branches
Tags
No related merge requests found
...@@ -125,6 +125,8 @@ Raytracer::Raytracer(const shared_ptr<BlockStorage> forest, BlockDataID storageI ...@@ -125,6 +125,8 @@ Raytracer::Raytracer(const shared_ptr<BlockStorage> forest, BlockDataID storageI
setTBufferOutputEnabled(true); setTBufferOutputEnabled(true);
setTBufferOutputDirectory(config.getParameter<std::string>("tbuffer_output_directory")); setTBufferOutputDirectory(config.getParameter<std::string>("tbuffer_output_directory"));
WALBERLA_LOG_INFO_ON_ROOT("t buffers will be written to " << getTBufferOutputDirectory() << "."); WALBERLA_LOG_INFO_ON_ROOT("t buffers will be written to " << getTBufferOutputDirectory() << ".");
} else {
setTBufferOutputEnabled(false);
} }
setLocalImageOutputEnabled(config.getParameter<bool>("local_image_output_enabled", false)); setLocalImageOutputEnabled(config.getParameter<bool>("local_image_output_enabled", false));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment