mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-07 22:53:42 +01:00
21 lines
437 B
Fortran
21 lines
437 B
Fortran
BEGIN_PROVIDER [ character*(1024), trexio_filename ]
|
|
implicit none
|
|
BEGIN_DOC
|
|
! Name of the TREXIO file
|
|
END_DOC
|
|
character*(1024) :: prefix
|
|
|
|
trexio_filename = trexio_file
|
|
|
|
if (trexio_file == 'None') then
|
|
prefix = trim(ezfio_work_dir)//trim(ezfio_filename)
|
|
if (backend == 0) then
|
|
trexio_filename = trim(prefix)//'.h5'
|
|
else if (backend == 1) then
|
|
trexio_filename = trim(prefix)
|
|
endif
|
|
endif
|
|
END_PROVIDER
|
|
|
|
|