From 8226123e2b3916a6c22846097759b135e299fa5a Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Sun, 18 Feb 2024 23:58:44 +0100 Subject: [PATCH] Fix missing file --- examples/correlation/plot_confocor3_two_ch_correlation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/correlation/plot_confocor3_two_ch_correlation.py b/examples/correlation/plot_confocor3_two_ch_correlation.py index cf8402f9..5265ed3e 100644 --- a/examples/correlation/plot_confocor3_two_ch_correlation.py +++ b/examples/correlation/plot_confocor3_two_ch_correlation.py @@ -25,7 +25,7 @@ # ------------ # The photon data registered by different detectors are saved in separate files. # Read the data of all channels that should be correlated into separate containers. -fns = [str(p) for p in pathlib.Path('../../tttr-data/cz/fcs').glob('b02f1b794ef4110bcde513983548ee4b_R1_P12_K1_Ch*.raw')] +fns = [str(p) for p in pathlib.Path('../../tttr-data/cz/fcs').glob('5a6ce6a348a08e3da9f7c0ab4ee0ce94_R1_P1_K1_Ch*.raw')] tttr_data = [tttrlib.TTTR(fn, 'CZ-RAW') for fn in fns] #%%