From 4978d39fbf2b9b260d97558b7b856da47af53e4b Mon Sep 17 00:00:00 2001 From: Ji Qiang Date: Thu, 1 Aug 2024 11:40:27 -0700 Subject: [PATCH] print out warning when total # of particles < 1 --- src/Contrl/AccSimulator.f90 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Contrl/AccSimulator.f90 b/src/Contrl/AccSimulator.f90 index 4b71bc2..c64215c 100644 --- a/src/Contrl/AccSimulator.f90 +++ b/src/Contrl/AccSimulator.f90 @@ -1459,6 +1459,9 @@ subroutine run_AccSimulator() nptottmp = sum(Np) !exit if the beam is outside the beamline if(distance.gt.blnLength .or. distance.gt.tstop .or. nptottmp.lt.1) then + if(nptottmp.lt.1) then + print*,"Warning: total # of particles is less than 1!! ",nptottmp + endif exit endif