1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
# Copyright (C) 2010-2022 ABINIT group (Yann Pouillon)
# This file is distributed under the terms of the
# GNU General Public License, see ~abinit/COPYING
# or http://www.gnu.org/copyleft/gpl.txt .
# For the initials of contributors, see ~abinit/doc/developers/contributors.txt .
#
# The purpose of this script is to create a new module
# ${module_name}.F90, from the embedded template,
# where "${module_name}" is the argument of the script.
# Suppose that one is in a source directory, and that
# Utility/template.F90 is accessible as ../Utilities/template.F90
if [ $# -lt 1 ]
then
echo "Usage: mkmodule module_name [routine_name]"
exit 1
fi
module_name="${1}"
routine_name="${2}"
test "${routine_name}" = "" && routine_name="dummy_routine"
this_year=`date '+%Y'`
echo -n "mkmodule: creating ${module_name}.F90..."
cat > ${module_name}.F90 <<EOF
!{\src2tex{textfont=tt}}
!!****m* ABINIT/${module_name}
!! NAME
!! ${module_name}
!!
!! FUNCTION
!! FIXME: add description.
!!
!! COPYRIGHT
!! Copyright (C) ${this_year} ABINIT group (FIXME: add author)
!! This file is distributed under the terms of the
!! GNU General Public License, see ~abinit/COPYING
!! or http://www.gnu.org/copyleft/gpl.txt .
!!
!! NOTES
!!
!! PARENTS
!!
!! CHILDREN
!!
!! SOURCE
#if defined HAVE_CONFIG_H
#include "config.h"
#endif
#include "abi_common.h"
module ${module_name}
use defs_basis
use m_profiling_abi
use m_errors
implicit none
private
! *************************************************************************
contains
!!***
!!****f* ABINIT/${module_name}/${routine_name}
!! NAME
!! ${routine_name}
!!
!! FUNCTION
!! FIXME: add description.
!!
!! INPUTS
!! argin(sizein)=description
!!
!! OUTPUT
!! argout(sizeout)=description
!!
!! SIDE EFFECTS
!!
!! NOTES
!!
!! PARENTS
!!
!! CHILDREN
!!
!! SOURCE
subroutine ${routine_name}(argin,argout,option,sizein,sizeout)
use defs_basis
implicit none
!Arguments ------------------------------------
integer , intent(in) :: option,sizein,sizeout
integer , intent(in) :: argin(sizein)
integer , intent(out) :: argout(sizeout)
real(dp), intent(out) ::
!Local variables-------------------------------
integer ::
real(dp) ::
!character(len=500) :: msg
! *************************************************************************
DBG_ENTER("COLL")
! if (option/=1 .and. option/=2 ) then
! write(msg,'(3a,i0)')&
!& 'The argument option should be 1 or 2,',ch10,&
!& 'however, option=',option
! MSG_BUG(msg)
! end if
!
! if (sizein<1) then
! write(msg,'(3a,i0)')&
!& ' The argument sizein should be a positive number,',ch10,&
!& ' however, sizein=',sizein
! MSG_ERROR(msg)
! end if
DBG_EXIT("COLL")
end subroutine ${routine_name}
!!***
end module ${module_name}
!!***
EOF
echo "done."
|