Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
1.2 KiB

C Copyright(C) 1999-2020 National Technology & Engineering Solutions
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
C NTESS, the U.S. Government retains certain rights in this software.
C
C See packages/seacas/LICENSE for details
C=======================================================================
SUBROUTINE PRNSEL (NSEL, NTOT, VALNAM)
C=======================================================================
C --*** PRNSEL *** (BLOT) Print number of values selected
C -- Written by Amy Gilkey - revised 03/02/88
C --
C --PRNSEL prints the number of values selected.
C --
C --Parameters:
C -- NSEL - IN - the number of values selected
C -- NTOT - IN - the total number of values
C -- VALNAM - IN - the name of the value being checked (plural)
CHARACTER*(*) VALNAM
CHARACTER*80 STRING
IF (NSEL .LE. 0) THEN
WRITE (STRING, '(5A)') 'No ', VALNAM, ' are selected'
CALL PRTERR ('CMDWARN', STRING(:LENSTR(STRING)))
ELSE
WRITE (STRING, 10000) NSEL, NTOT, VALNAM
10000 FORMAT (I6, ' of ', I6, ' ', A, ' selected')
CALL SQZSTR (STRING, LSTR)
WRITE (*, 10010) STRING(:LSTR)
END IF
RETURN
10010 FORMAT (4X, A)
END