Skip to content

Commit

Permalink
Fix polarised flux reduction
Browse files Browse the repository at this point in the history
  • Loading branch information
sstendahl committed Jul 4, 2024
1 parent 2685c4d commit add14c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hogben/optimise.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def optimise_parameters(sample: BaseSample,
if not isinstance(angle_times[0], list):
angle_times = [angle_times for _ in sample.get_models()]
if sample.is_magnetic() and sample.polarised:
angle_times = [[(angle, points, time / 2)
angle_times = [[(angle, points, time / 4)
for angle, points, time in angle_time]
for angle_time in angle_times]
fisher = Fisher.from_sample(sample, angle_times, inst_or_path=inst_or_path)
Expand Down

0 comments on commit add14c4

Please sign in to comment.