Skip to content

Commit 5372ef6

Browse files
authored
Merge pull request #216 from scipp/no_direct_beam
Running SANS workflow without direct_beam
2 parents f5bf81e + 76b773f commit 5372ef6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/ess/sans/i_of_q.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -315,9 +315,10 @@ def to_I_of_Q(
315315
}
316316

317317
# Compute normalizing term
318-
direct_beam = resample_direct_beam(
319-
direct_beam=direct_beam, wavelength_bins=wavelength_bins
320-
)
318+
if direct_beam is not None:
319+
direct_beam = resample_direct_beam(
320+
direct_beam=direct_beam, wavelength_bins=wavelength_bins
321+
)
321322
denominator = normalization.iofq_denominator(
322323
data=data,
323324
data_transmission_monitor=data_monitors['transmission'],

0 commit comments

Comments
 (0)