| 3698 | |
| 3699 | |
| 3700 | std::unique_ptr<MultiFab> |
| 3701 | Castro::derive (const std::string& name, |
| 3702 | Real time, |
| 3703 | int ngrow) |
| 3704 | { |
| 3705 | |
| 3706 | BL_PROFILE("Castro::derive()"); |
| 3707 | |
| 3708 | #ifdef AMREX_PARTICLES |
| 3709 | return ParticleDerive(name,time,ngrow); |
| 3710 | #else |
| 3711 | return AmrLevel::derive(name,time,ngrow); |
| 3712 | #endif |
| 3713 | } |
| 3714 | |
| 3715 | void |
| 3716 | Castro::derive (const std::string& name, |
no outgoing calls
no test coverage detected