From b5fb632cc25c9f8480870d9ab16e3ac6d799e1cb Mon Sep 17 00:00:00 2001 From: Markus Bullmann Date: Tue, 26 Nov 2019 14:24:17 +0100 Subject: [PATCH] Removed particle scaling --- code/Plotty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Plotty.h b/code/Plotty.h index d8f7344..f0561c7 100644 --- a/code/Plotty.h +++ b/code/Plotty.h @@ -492,7 +492,7 @@ public: double max = -999; for (const T& p : particles) { const K::GnuplotPoint3 p3(p.state.pos.pos.x, p.state.pos.pos.y, p.state.pos.pos.z); - const double prob = std::pow(p.weight, 0.25); + const double prob = p.weight; // std::pow(p.weight, 0.25); this->particles.add(p3, prob); if (prob > max) {max = prob;} if (prob < min) {min = prob;}