mirror of https://gitlab.com/QEF/q-e.git
20 lines
639 B
Fortran
20 lines
639 B
Fortran
!
|
|
! 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
|
|
!==-----------------------------------------------------------------------==!
|
|
!! Title of the simulation
|
|
!
|
|
IMPLICIT NONE
|
|
!
|
|
CHARACTER(LEN=75) :: title=' '
|
|
!! Title of the simulation
|
|
!
|
|
END MODULE run_info
|
|
!==-----------------------------------------------------------------------==!
|