diff options
author | 2017-03-23 10:54:40 -0700 | |
---|---|---|
committer | 2017-03-23 10:54:40 -0700 | |
commit | faa4aa365bf133a67e0430e1730e906a251f30c5 (patch) | |
tree | 9f0bb02be728a1862eab10297a59ee15eea58198 /Python/pywarpx/WarpX.py | |
parent | be2588a65ccfad3a69f41b548611b18fd4aa5578 (diff) | |
parent | af4888597d8cc025bb4324f9af0a1f04777fe31a (diff) | |
download | WarpX-faa4aa365bf133a67e0430e1730e906a251f30c5.tar.gz WarpX-faa4aa365bf133a67e0430e1730e906a251f30c5.tar.zst WarpX-faa4aa365bf133a67e0430e1730e906a251f30c5.zip |
Merge branch 'python-ctypes' of bitbucket.org:berkeleylab/warpx into python-ctypes
Diffstat (limited to 'Python/pywarpx/WarpX.py')
-rw-r--r-- | Python/pywarpx/WarpX.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/pywarpx/WarpX.py b/Python/pywarpx/WarpX.py index 976d94c74..e9ec7cca4 100644 --- a/Python/pywarpx/WarpX.py +++ b/Python/pywarpx/WarpX.py @@ -2,6 +2,9 @@ from .Bucket import Bucket from . import warpxC class WarpX(Bucket): + """ + A Python wrapper for the WarpX C++ class + """ def init(self): self.warpx = warpxC.WarpX.GetInstance() |