From d65a873ad7aa5e8de26894bf7cfd4986dd587764 Mon Sep 17 00:00:00 2001 From: Vesa Oikonen <vesoik@utu.fi> Date: Thu, 29 Jun 2023 12:49:03 +0300 Subject: [PATCH] prevent compiler error on linux --- v1/input/pbconv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v1/input/pbconv.c b/v1/input/pbconv.c index b210376c..2d711aa0 100644 --- a/v1/input/pbconv.c +++ b/v1/input/pbconv.c @@ -215,6 +215,7 @@ int rbc_plasma_ratio( break; case UCBJ: // Median parameters from TPC analysis, n=7 + { double A1=0.691911; double L1=0.9; double A2=0.174026; @@ -225,6 +226,7 @@ int rbc_plasma_ratio( if(!(t[i]>0.0)) r[i]=0.0; else r[i]=(A1*t[i] - A2 - A3)*exp(-L1*t[i]) + A2*exp(-L2*t[i]) + A3*exp(-L3*t[i]); } + } break; default: -- GitLab