| 16 | using namespace amrex; |
| 17 | |
| 18 | Real |
| 19 | Castro::volWgtSum (const std::string& name, Real time, bool local, bool finemask) |
| 20 | { |
| 21 | auto mf = derive(name, time, 0); |
| 22 | |
| 23 | BL_ASSERT(mf); |
| 24 | |
| 25 | return volWgtSum(*mf, 0, local, finemask); |
| 26 | } |
| 27 | |
| 28 | Real |
| 29 | Castro::volWgtSum (const MultiFab& mf, int comp, bool local, bool finemask) |
no test coverage detected