diff options
author | 2017-03-28 09:37:43 -0700 | |
---|---|---|
committer | 2017-03-28 09:37:43 -0700 | |
commit | 6151dc4888aa6c9571aaf06a89e795bb1f20caf7 (patch) | |
tree | a2e5f2befb8b0d1dfa7a3ad96120ed3f98ac260e /Python | |
parent | fa47be6293b5cd36d43e7f1aa7cd24b6c87d95e1 (diff) | |
parent | d88b17b700ca42507ddf38ebff48587a67358aa9 (diff) | |
download | WarpX-6151dc4888aa6c9571aaf06a89e795bb1f20caf7.tar.gz WarpX-6151dc4888aa6c9571aaf06a89e795bb1f20caf7.tar.zst WarpX-6151dc4888aa6c9571aaf06a89e795bb1f20caf7.zip |
Merge branch 'master' into python-ctypes
Diffstat (limited to 'Python')
-rw-r--r-- | Python/WarpXProb.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Python/WarpXProb.cpp b/Python/WarpXProb.cpp deleted file mode 100644 index 722b2931e..000000000 --- a/Python/WarpXProb.cpp +++ /dev/null @@ -1,17 +0,0 @@ - -// -// Each problem must have its own version of WarpX::InitLevelData(int lev) -// to initialize the field data on this level. -// - -#include <WarpX.H> - -void -WarpX::InitLevelData (int lev) -{ - for (int i = 0; i < 3; ++i) { - current[lev][i]->setVal(0.0); - Efield[lev][i]->setVal(0.0); - Bfield[lev][i]->setVal(0.0); - } -} |