| 875 | } |
| 876 | |
| 877 | void |
| 878 | BoxArray::set (int i, const Box& ibox) |
| 879 | { |
| 880 | BL_ASSERT(m_bat.is_simple() && crseRatio() == IntVect::TheUnitVector()); |
| 881 | if (i == 0) { |
| 882 | m_bat.set_index_type(ibox.ixType()); |
| 883 | } |
| 884 | m_ref->m_abox[i] = amrex::enclosedCells(ibox); |
| 885 | } |
| 886 | |
| 887 | Box |
| 888 | BoxArray::operator[] (const MFIter& mfi) const noexcept |