@@ -114,6 +114,7 @@ def test_load_geant4_csv_mantle_has_expected_coords(file):
114114 assert_index_coord (mantle .coords ["wire" ], values = set (range (1 , 33 )))
115115 assert_index_coord (mantle .coords ["strip" ], values = set (range (1 , 257 )))
116116 assert "sector" not in mantle .coords
117+ assert "sumo" not in mantle .coords
117118
118119 assert "sector" not in mantle .bins .coords
119120 assert "tof" in mantle .bins .coords
@@ -127,6 +128,7 @@ def test_load_geant4_csv_endcap_backward_has_expected_coords(file):
127128 assert_index_coord (endcap .coords ["counter" ])
128129 assert_index_coord (endcap .coords ["wire" ], values = set (range (1 , 17 )))
129130 assert_index_coord (endcap .coords ["strip" ], values = set (range (1 , 17 )))
131+ assert_index_coord (endcap .coords ["sumo" ], values = set (range (3 , 7 )))
130132 assert "sector" not in endcap .coords
131133
132134 assert "sector" not in endcap .bins .coords
@@ -141,6 +143,7 @@ def test_load_geant4_csv_endcap_forward_has_expected_coords(file):
141143 assert_index_coord (endcap .coords ["counter" ])
142144 assert_index_coord (endcap .coords ["wire" ], values = set (range (1 , 17 )))
143145 assert_index_coord (endcap .coords ["strip" ], values = set (range (1 , 17 )))
146+ assert_index_coord (endcap .coords ["sumo" ], values = set (range (3 , 7 )))
144147 assert "sector" not in endcap .coords
145148
146149 assert "sector" not in endcap .bins .coords
@@ -156,6 +159,7 @@ def test_load_geant4_csv_high_resolution_has_expected_coords(file):
156159 assert_index_coord (hr .coords ["wire" ], values = set (range (1 , 17 )))
157160 assert_index_coord (hr .coords ["strip" ], values = set (range (1 , 33 )))
158161 assert_index_coord (hr .coords ["sector" ], values = set (range (1 , 5 )))
162+ assert "sumo" not in hr .coords
159163
160164 assert "tof" in hr .bins .coords
161165 assert "position" in hr .coords
@@ -172,6 +176,7 @@ def test_load_geant4_csv_sans_has_expected_coords(file):
172176 assert_index_coord (sans .coords ["wire" ], values = set (range (1 , 17 )))
173177 assert_index_coord (sans .coords ["strip" ], values = set (range (1 , 33 )))
174178 assert_index_coord (sans .coords ["sector" ], values = set (range (1 , 5 )))
179+ assert "sumo" not in sans .coords
175180
176181 assert "tof" in sans .bins .coords
177182 assert "position" in sans .coords
0 commit comments