| 1544 | } |
| 1545 | |
| 1546 | void |
| 1547 | MultiFab::AverageSync (const Periodicity& period) |
| 1548 | { |
| 1549 | BL_PROFILE("MultiFab::AverageSync()"); |
| 1550 | |
| 1551 | if (ixType().cellCentered()) { return; } |
| 1552 | auto wgt = this->OverlapMask(period); |
| 1553 | wgt->invert(1.0, 0, 1); |
| 1554 | this->WeightedSync(*wgt, period); |
| 1555 | } |
| 1556 | |
| 1557 | void |
| 1558 | MultiFab::WeightedSync (const MultiFab& wgt, const Periodicity& period) |
no test coverage detected