1
0
mirror of https://gitlab.com/scemama/qp_plugins_scemama.git synced 2024-07-26 20:57:56 +02:00
qp_plugins_scemama/devel/trexio/trexio_file.irp.f

21 lines
437 B
FortranFixed
Raw Normal View History

2021-06-27 15:53:27 +02:00
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