diff --git a/src/postprocessor/grouper.py b/src/postprocessor/grouper.py
index 3bfa3fe64550d85c0baad48478930c05803d382f..8518b8a23e27bc1c00dc294fe8be2c6e683739ea 100644
--- a/src/postprocessor/grouper.py
+++ b/src/postprocessor/grouper.py
@@ -407,7 +407,11 @@ def concat_signal_ind(
     elif mode == "families":
         combined = chainer.get_raw(path, **kwargs)
 
-        mother_id_mask = get_mother_ilocs_from_daughters(df)
+        daughter_ids = combined.index[
+            combined.index.get_level_values("mother_label") > 0
+        ]
+
+        mother_id_mask = get_mother_ilocs_from_daughters(combined)
         combined = combined.loc[
             combined.index[mother_id_mask].union(daughter_ids)
         ]