From 740f37b2a21a4919f3f50d83d46e3cd23066bc07 Mon Sep 17 00:00:00 2001 From: jmeziere Date: Sat, 24 Aug 2024 09:30:37 -0600 Subject: [PATCH] update state docstrings --- src/State.jl | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/src/State.jl b/src/State.jl index 2fe2977..57bf1f3 100644 --- a/src/State.jl +++ b/src/State.jl @@ -1,8 +1,16 @@ """ State(intensities, recSupport) + State(intensities, recSupport, support) -Create a reconstruction object. The intensities and a mask over reciprocal space -indicating trusted intensities need to be passed in. +Create a reconstruction object. `intensities` is a vector of fully measured diffraction +peaks and `recSupport` is a vector of masks over the intensities that removes those +intenities from the reconstruction process. + +The initialization process shifts each peak to be centered in the Fourier sense +(i.e. the center of mass of the peak is moved to the edge of the image, or the +zero frequency). If the support is not passed in, an initial guess of the support +is created by taking an IFFT of the intensities and including everything above +0.1 times the maximum value. """ struct State rho::CuArray{Float64, 3, CUDA.Mem.DeviceBuffer} @@ -25,18 +33,16 @@ struct State invInt = CUFFT.ifft(CuArray{Float64, 3, CUDA.Mem.DeviceBuffer}(intens[1])) support = abs.(invInt) .> 0.1 * maximum(abs.(invInt)) - s = size(support) + State(intens, gVecs, recSupports, support) + end + + function State(intens, gVecs, recSupports, support) + s = size(intens[1]) rho = CUDA.zeros(Float64, s) ux = CUDA.zeros(Float64, s) uy = CUDA.zeros(Float64, s) uz = CUDA.zeros(Float64, s) - State(intens, gVecs, recSupports, rho, ux, uy, uz, support) - end - - function State(intens, gVecs, recSupports, rho, ux, uy, uz, support) - s = size(intens[1]) - emptyCore = BcdiCore.TradState("L2", false, CUDA.zeros(Float64, s), CUDA.zeros(Float64, s), CUDA.zeros(Float64, s)) traditionals = [BcdiTrad.State(intens[i], recSupports[i], support, emptyCore) for i in 1:length(intens)] currTrad = Ref(rand(1:length(intens)))