From 72ccaf46434e2d23cb6d11d521bc6dd3586c4cb8 Mon Sep 17 00:00:00 2001 From: kutscher <kutscher@irmb.tu-bs.de> Date: Sun, 27 Sep 2020 21:18:24 +0200 Subject: [PATCH] add output for block size, bounding box, center of sphere --- apps/cpu/HerschelBulkleySphere/hbsphere.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/cpu/HerschelBulkleySphere/hbsphere.cpp b/apps/cpu/HerschelBulkleySphere/hbsphere.cpp index 28cf8de54..a31267160 100644 --- a/apps/cpu/HerschelBulkleySphere/hbsphere.cpp +++ b/apps/cpu/HerschelBulkleySphere/hbsphere.cpp @@ -183,6 +183,9 @@ void bflow(string configname) UBLOG(logINFO, "number of levels = " << refineLevel + 1); UBLOG(logINFO, "number of threads = " << numOfThreads); UBLOG(logINFO, "number of processes = " << comm->getNumberOfProcesses()); + UBLOG(logINFO, "blocknx = " << blocknx[0] << " " << blocknx[1] << " " << blocknx[2]); + UBLOG(logINFO, "boundingBox = " << boundingBox[0] << " " << boundingBox[1] << " " << boundingBox[2]); + UBLOG(logINFO, "sphereCenter = " << sphereCenter[0] << " " << sphereCenter[1] << " " << sphereCenter[2]); UBLOG(logINFO, "output path = " << outputPath); UBLOG(logINFO, "Preprozess - start"); } -- GitLab