3
0
mirror of https://github.com/triqs/dft_tools synced 2024-09-01 00:33:42 +02:00

default input file names in the Fleur converter changed

This commit is contained in:
Leonid 2016-01-19 18:21:54 +01:00
parent 5450f0a050
commit 43a9a715aa

View File

@ -40,8 +40,10 @@ class FleurConverter(ConverterTools):
assert type(filename)==StringType, "Please provide the DFT files' base name as a string."
if hdf_filename is None: hdf_filename = filename
self.hdf_file = hdf_filename+'.h5'
self.dft_file = filename+'.ctqmcout'
self.parproj_file = filename+'.parproj'
#self.dft_file = filename+'.ctqmcout'
#self.parproj_file = filename+'.parproj'
self.dft_file = 'ctqmcout'
self.parproj_file = 'parproj'
self.dft_subgrp = dft_subgrp
self.parproj_subgrp = parproj_subgrp
self.fortran_to_replace = {'D':'E'}