The Elk Code
becfext.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma.
3 ! This file is distributed under the terms of the GNU General Public License.
4 ! See the file COPYING for license details.
5 
6 subroutine becfext(is,ia,ip,fext)
7 use modmain
8 implicit none
9 ! arguments
10 integer, intent(in) :: is,ia,ip
11 character(*), intent(out) :: fext
12 write(fext,'("_S",I2.2,"_A",I3.3,"_P",I1,".OUT")') is,ia,ip
13 end subroutine
14 
subroutine becfext(is, ia, ip, fext)
Definition: becfext.f90:7