Update CFSimpleIndexer authored by Martin Pokorny's avatar Martin Pokorny
...@@ -120,7 +120,15 @@ class MyCFArray : public hpg::CFArray { ...@@ -120,7 +120,15 @@ class MyCFArray : public hpg::CFArray {
hpg::CellIndex ci = m_subset_indexer.cell_index({mueller, cube, group}); hpg::CellIndex ci = m_subset_indexer.cell_index({mueller, cube, group});
assert(ci.m_w_plane == 0); assert(ci.m_w_plane == 0);
assert(ci.m_mueller < 4); assert(ci.m_mueller < 4);
return m_store(ci.m_baseline_class, ci.m_time, m_w_map[ci.m_w_plane], ci.m_frequency, m_mueller_map[ci.m_mueller], x, y); return
m_store(
ci.m_baseline_class,
ci.m_time,
m_w_map[ci.m_w_plane],
ci.m_frequency,
m_mueller_map[ci.m_mueller],
x,
y);
} }
//... //...
... ...
......