| 1018 | } |
| 1019 | |
| 1020 | IntVect |
| 1021 | MultiFab::maxIndex (int comp, int nghost) const |
| 1022 | { |
| 1023 | BL_ASSERT(nghost >= 0 && n_grow.allGE(nghost)); |
| 1024 | Real mx = this->max(comp, nghost, true); |
| 1025 | return indexFromValue(*this, comp, nghost, mx, MPI_MAXLOC); |
| 1026 | } |
| 1027 | |
| 1028 | Real |
| 1029 | MultiFab::norm0 (const iMultiFab& mask, int comp, int nghost, bool local) const |
nothing calls this directly
no test coverage detected