[Dart-dev] [8761] DART/trunk/observations/gps/convert_cosmic_gps_cdf.f90: change in printout only - was printing out a count of the

nancy at ucar.edu nancy at ucar.edu
Wed Oct 7 15:04:35 MDT 2015


Revision: 8761
Author:   nancy
Date:     2015-10-07 15:04:34 -0600 (Wed, 07 Oct 2015)
Log Message:
-----------
change in printout only - was printing out a count of the
number of profiles converted and the count was off by one.

Modified Paths:
--------------
    DART/trunk/observations/gps/convert_cosmic_gps_cdf.f90

-------------- next part --------------
Modified: DART/trunk/observations/gps/convert_cosmic_gps_cdf.f90
===================================================================
--- DART/trunk/observations/gps/convert_cosmic_gps_cdf.f90	2015-10-07 21:03:04 UTC (rev 8760)
+++ DART/trunk/observations/gps/convert_cosmic_gps_cdf.f90	2015-10-07 21:04:34 UTC (rev 8761)
@@ -335,7 +335,7 @@
 call destroy_obs_sequence(obs_seq)
 call destroy_obs(obs)   ! do not destroy prev_obs, which is same as obs
 
-write(msgstring, *) 'processed ', filenum, ' total profiles'
+write(msgstring, *) 'processed ', filenum-1, ' total profiles'
 call error_handler(E_MSG, 'convert_cosmic_gps_obs', msgstring, source, revision, revdate)
 
 if (numrejected > 0) then


More information about the Dart-dev mailing list