Skip to content
Snippets Groups Projects
Commit fba7beda authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Reverted scattering intensity to be renormalized to the norm-2 for the moment

parent 6be8368e
No related branches found
No related tags found
No related merge requests found
......@@ -955,7 +955,8 @@ classdef Gt6DReconstructionAlgorithmFactory < handle
fprintf(' - Using theoretically predicted intensities for each family\n')
cryst_scatter_ints = self.parameters.cryst(ref_gr.phaseid).int;
end
cryst_scatter_ints = cryst_scatter_ints ./ mean(cryst_scatter_ints);
% cryst_scatter_ints = cryst_scatter_ints ./ mean(cryst_scatter_ints);
cryst_scatter_ints = cryst_scatter_ints ./ sqrt(sum(cryst_scatter_ints .^ 2));
thetatypes = ref_gr.allblobs.thetatype(sel);
scatter_ints = cryst_scatter_ints(thetatypes);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment