blob: 4abec6ea8712c4dd612f6ac8298427c7827d7ec7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Each problem must have its own version of PhysicalParticleContainer::InitData()
// to initialize the particle data. It must also initialize charge and mass.
//
#include <cmath>
#include <AMReX_BLProfiler.H>
#include <ParticleContainer.H>
#include <WarpXConst.H>
using namespace amrex;
void
PhysicalParticleContainer::InitData()
{
static_assert(false,
"Each problem must have its own version of PhysicalParticleContainer::InitData()");
}
|