fixed wrong path in NeXus IDF V2.

This commit is contained in:
2026-02-05 12:59:10 +01:00
parent 88b5e492dd
commit 643be9738f

View File

@@ -3931,7 +3931,7 @@ void nxH5::PNeXus::Dump()
std::cout << std::endl << " dead_time:"; std::cout << std::endl << " dead_time:";
std::cout << std::endl; std::cout << std::endl;
try { try {
auto dead_time = std::any_cast<PNXdata<float>>(fDataMap["/raw_data_1/instrument/detector_1/dead_time"]); auto dead_time = std::any_cast<PNXdata<float>>(fDataMap["/raw_data_1/detector_1/dead_time"]);
const auto& data = dead_time.GetData(); const auto& data = dead_time.GetData();
// dump the first couple of raw_times // dump the first couple of raw_times