package gdsc.smlm.ij.settings; /*----------------------------------------------------------------------------- * GDSC SMLM Software * * Copyright (C) 2013 Alex Herbert * Genome Damage and Stability Centre * University of Sussex, UK * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. *---------------------------------------------------------------------------*/ /** * Contain the settings for the PSF Calculator */ public class PSFCalculatorSettings { public double pixelPitch = 6.45; public double magnification = 63; public double beamExpander = 1; public double wavelength = 500; public double numericalAperture = 1.4; public boolean adjustForSquarePixels = true; public double proportionalityFactor = 1.52; }