| 166 | } |
| 167 | |
| 168 | Real |
| 169 | Castro::volProductSum (const std::string& name1, |
| 170 | const std::string& name2, |
| 171 | Real time, bool local) |
| 172 | { |
| 173 | auto mf1 = derive(name1, time, 0); |
| 174 | auto mf2 = derive(name2, time, 0); |
| 175 | |
| 176 | BL_ASSERT(mf1); |
| 177 | BL_ASSERT(mf2); |
| 178 | |
| 179 | return volProductSum(*mf1, *mf2, 0, 0, local); |
| 180 | } |
| 181 | |
| 182 | Real |
| 183 | Castro::volProductSum (const MultiFab& mf1, |
no test coverage detected