Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Source/driver/Castro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4336,7 +4336,12 @@ Castro::define_new_center(const MultiFab& S, Real time)
}
#endif

// Find the position of the "center" by interpolating from data at cell centers
// Find the position of the "center" by interpolating from data at
// cell centers We only define a single 3x3 (or 3x3x3) box around
// max_index above, so this MultiFab should have a single local
// FAB.
AMREX_ALWAYS_ASSERT(mf.local_size() == 1);

for (MFIter mfi(mf); mfi.isValid(); ++mfi)
{

Expand Down