DiffractionExperiment: Solid angle correction is not anymore preference of a dataset; it can be now turned on and off when asking for plot

This commit is contained in:
2023-05-17 22:33:03 +02:00
parent 97bf8f7e4a
commit 11e478a5d0
10 changed files with 127 additions and 144 deletions

View File

@@ -155,8 +155,8 @@ TEST_CASE("HDF5MasterFile_RadInt", "[HDF5][Full]") {
start_message.rad_int_bin_to_q = mapping.GetBinToQ();
EndMessage end_message;
end_message.number_of_images = x.GetImageNum();
end_message.rad_int_result["avg1"] = profile.GetResult();
end_message.rad_int_result["avg2"] = profile.GetResult();
end_message.rad_int_result["avg1"] = profile.GetResult(false);
end_message.rad_int_result["avg2"] = profile.GetResult(false);
REQUIRE_NOTHROW(HDF5Metadata::NXmx(start_message, end_message));
}