removing file reintroinuced by mistake

in a previous commit of mine.
This commit is contained in:
Pietro Delugas 2020-09-30 09:24:11 +02:00
parent 223d2a959e
commit 2fa1b9ce2f
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
!
! Copyright (C) 2001-2002 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!---------------------------------------------------------------------
PROGRAM read_ps
!---------------------------------------------------------------------
!
! Read pseudopotentials in the Unified Pseudopotential Format (UPF)
!
USE pseudo_mod, ONLY: read_pseudo
IMPLICIT NONE
INTEGER :: is, ios, iunps = 4
CHARACTER (len=256) :: filein
!
is = 0
10 WRITE(*,'(" Input PP file # ",i2," in UPF format > ")',advance="NO") is+1
READ (5, '(a)', end = 20, err = 20) filein
OPEN(unit=iunps,file=filein,status='old',form='formatted',iostat=ios)
IF (ios/=0) STOP
is = is + 1
CALL read_pseudo(is, iunps)
CLOSE (unit=iunps)
GOTO 10
20 STOP
END PROGRAM read_ps