1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
!
! Copyright (C) 2011 Quantum ESPRESSO groups
! 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 .
!
!==-----------------------------------------------------------------------==!
MODULE run_info
!==-----------------------------------------------------------------------==!
IMPLICIT NONE
! ... title of the simulation
CHARACTER(LEN=75) :: title=' '
!
END MODULE run_info
!==-----------------------------------------------------------------------==!
|