diff options
author | 2017-01-12 16:21:20 -0800 | |
---|---|---|
committer | 2017-01-12 16:21:20 -0800 | |
commit | 7d8f72727fbec7ea466b71a19f2d4197effb8bcf (patch) | |
tree | a34989fb1c755a97f48d13b0a43704a163db5dd8 /Python | |
parent | 81048598bd6d6b7a2f4c863a03d3031bf1de746c (diff) | |
download | WarpX-7d8f72727fbec7ea466b71a19f2d4197effb8bcf.tar.gz WarpX-7d8f72727fbec7ea466b71a19f2d4197effb8bcf.tar.zst WarpX-7d8f72727fbec7ea466b71a19f2d4197effb8bcf.zip |
multi species
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ParticleProb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/ParticleProb.cpp b/Python/ParticleProb.cpp index fc8cd0f71..59558c193 100644 --- a/Python/ParticleProb.cpp +++ b/Python/ParticleProb.cpp @@ -1,6 +1,6 @@ // -// Each problem must have its own version of MyParticleContainer::InitData() +// Each problem must have its own version of SingleParticleContainer::InitData() // to initialize the particle data on this level // @@ -12,9 +12,9 @@ #include <WarpXConst.H> void -MyParticleContainer::InitData() +SingleParticleContainer::InitData() { - BL_PROFILE("MyPC::InitData()"); + BL_PROFILE("SPC::InitData()"); charge = -PhysConst::q_e; mass = PhysConst::m_e; |