It used to be possible to construct a source using
tof.Source(facility="ess", pulses=5, wmax=10*ang)
But since version 26.6.0, this raises
scipp._scipp.core.DTypeError: 'copy' does not support dtypes 'float64', 'int64',
which comes from
|
wavelength=sc.concat([wmin, wmin, wmax, wmax, wmin], dim='vertex'), |
This can be circumvented by changing the call to
tof.Source(facility="ess", pulses=5, wmax=10.0*ang)
We are usually not that strict about dtypes. Maybe we should automatically convert to float64 here.
It used to be possible to construct a source using
But since version 26.6.0, this raises
which comes from
tof/src/tof/source.py
Line 305 in dbdebf4
This can be circumvented by changing the call to
We are usually not that strict about dtypes. Maybe we should automatically convert to float64 here.