diff --git a/KMH-DMFT/KMH-DMFT_mat/PostDMFT/DMFTenergies.m b/KMH-DMFT/KMH-DMFT_mat/PostDMFT/DMFTenergies.m index 6d3eff4..3bc24df 100644 --- a/KMH-DMFT/KMH-DMFT_mat/PostDMFT/DMFTenergies.m +++ b/KMH-DMFT/KMH-DMFT_mat/PostDMFT/DMFTenergies.m @@ -6,12 +6,6 @@ global ignUlist ignUlist = false; % true | false -% >>>>>>>>>>>> ACHTUNG <<<<<<<<<<<< -% ignoring the U_list will give -% problems for every nonconverged -% DMFT point (Ekin is evaluated -% at convergence!) -% >>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<< [SOI_list, SOI_names] = postDMFT.get_list('SOI'); Nlines = length(SOI_list); diff --git a/KMH-DMFT/KMH-DMFT_mat/PostDMFT/trimFigure.m b/KMH-DMFT/KMH-DMFT_mat/PostDMFT/trimFigure.m deleted file mode 100644 index c0e3ab5..0000000 --- a/KMH-DMFT/KMH-DMFT_mat/PostDMFT/trimFigure.m +++ /dev/null @@ -1,12 +0,0 @@ -function trimFigure(inFig) -%TRIMFIGURE Trims the white borders of the figure when exporting to PDF - -if nargin < 1 - inFig = gcf; -end - -set(inFig,'PaperPositionMode','auto'); -figpos = get(inFig,'PaperPosition'); -set(inFig,'PaperSize',[figpos(3) figpos(4)]); -end -