From 2d05158e79e701f7efa18434211ae733b0600933 Mon Sep 17 00:00:00 2001 From: John M O'Donnell Date: Mon, 6 Oct 2025 23:54:03 -0600 Subject: [PATCH] catima_calculator can have energy steps less than 1 MeV/u --- bin/catima_calculator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/catima_calculator.cpp b/bin/catima_calculator.cpp index 2b4d482..781bb35 100644 --- a/bin/catima_calculator.cpp +++ b/bin/catima_calculator.cpp @@ -82,7 +82,7 @@ int main( int argc, char * argv[] ) double emax = e["max"].get(); int num=0; if(e.count("step")){ - num = 1+(emax-emin)/e["step"].get(); + num = 1+(emax-emin)/e["step"].get(); } if(e.count("num")){ num = e["num"].get();