-
Notifications
You must be signed in to change notification settings - Fork 26
Closed
Labels
Description
Followup to the discussion on #517
The Estimator class derives its L property directly from the Source from which it is instantiated.
| self.L = src.L |
Similarly NoiseEstimator https://github.com/ComputationalCryoEM/ASPIRE-Python/blob/master/src/aspire/noise/noise.py:
self.src = src
self.dtype = self.src.dtype
self.L = src.L
self.n = src.n We should double check that these aren't ever different, and if so, simplify by referring to the src if that's where the values come from.
janden