| 245 | } // ~LevelSetMassLossFixer |
| 246 | |
| 247 | void |
| 248 | LevelSetMassLossFixer::putToDatabase(Pointer<Database> db) |
| 249 | { |
| 250 | const LevelSetContainer& ls_container = getLevelSetContainer(); |
| 251 | db->putDouble("vol_init", d_vol_init); |
| 252 | db->putDouble("ncells", ls_container.getInterfaceHalfWidth()); |
| 253 | db->putDouble("vol_target", d_vol_target); |
| 254 | } // putToDatabase |
| 255 | |
| 256 | void |
| 257 | LevelSetMassLossFixer::setInitialVolume(double v0) |
nothing calls this directly
no test coverage detected