aboutsummaryrefslogtreecommitdiff
path: root/Source/Python/WarpX_py.cpp (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2019-09-16Added test for unphysical QED processes in PhotonParticleContainer.cppGravatar Luca Fedeli 1-0/+8
2019-09-13Correct deposition buffersGravatar Remi Lehe 1-1/+1
2019-09-13Removed m_giv which was being set but not used.Gravatar Dave Grote 11-38/+13
2019-09-13Fixed accidental commit of merge conflictGravatar Luca Fedeli 1-3/+1
2019-09-13Style changesGravatar Luca Fedeli 4-38/+38
2019-09-13Applied style changesGravatar Luca Fedeli 1-1/+1
2019-09-12Fix newly introduced EOLGravatar Axel Huebl 5-39/+39
2019-09-12Re-Activate EOL whitespace CheckGravatar Axel Huebl 2-3/+5
Re-activate style check. We just merged some files alongside before it became active. Generalize check and propose working sed script for OSX.
2019-09-12PML::exchange needs to be public nowGravatar Andrew Myers 1-13/+32
2019-09-12port the fab copy in PML::Exchange to GPUGravatar Andrew Myers 1-83/+271
2019-09-12Disable EOL whitespace checkGravatar Axel Huebl 3-4/+6
CI builder has a confusing EOL git setting that mismatches OSX newlines with blanks on checkout.
2019-09-12More fortran cleanupGravatar Remi Lehe 1-13/+0
2019-09-12Further cleanupGravatar Remi Lehe 1-1/+4
2019-09-12Fixing another typoGravatar RevathiJambunathan 1-1/+1
2019-09-12Cleanup fortran filesGravatar Remi Lehe 3-1031/+0
2019-09-12Fix typo in CKC solverGravatar Remi Lehe 1-1/+1
2019-09-12remove outdated commentGravatar MaxThevenet 1-2/+0
2019-09-12fix order of includesGravatar MaxThevenet 1-1/+2
2019-09-12bigger domain for lab_diags testGravatar Maxence Thevenet 1-1/+1
2019-09-12reset problem sizes for automated testsGravatar Maxence Thevenet 1-19/+19
2019-09-12Added decorators and removed old unused codeGravatar Luca Fedeli 4-9/+8
2019-09-12remove outdated options from inputs exampleGravatar MaxThevenet 1-5/+1
2019-09-12Removed old codeGravatar Luca Fedeli 2-37/+12
2019-09-12further cleaning for photon PRGravatar MaxThevenet 6-84/+1
2019-09-12remove QED specifics, they will be included in later PRsGravatar MaxThevenet 2-38/+3
2019-09-12set do_pml to 0 in all tests but oneGravatar Maxence Thevenet 5-0/+5
2019-09-12more checks and cleaning in automaated performance testsGravatar Maxence Thevenet 3-12/+13
2019-09-12Revert style changeGravatar Luca Fedeli 3-66/+66
2019-09-12Now physical particles have Tau initialization via QS engineGravatar Luca Fedeli 8-83/+147
2019-09-12Added wrapper for quantum synchrotronGravatar Luca Fedeli 2-0/+43
2019-09-12Reverted style changeGravatar Luca Fedeli 1-8/+8
2019-09-12Optical depth correctly initialized. Now BW engine wrapper is a classGravatar Luca Fedeli 5-32/+36
2019-09-12Added initialization of tau for photons via BW engineGravatar Luca Fedeli 3-0/+37
2019-09-12Added do_qed_breit_wheeler flag for photonsGravatar Luca Fedeli 3-0/+13
2019-09-12reverted style changesGravatar Luca Fedeli 2-63/+62
2019-09-12removed InitTau from PhysicalParticleContainerGravatar Luca Fedeli 2-86/+63
2019-09-12Fixed issue with tau outputGravatar Luca Fedeli 3-19/+29
2019-09-11Fix leftover TABsGravatar Axel Huebl 2-2/+2
2019-09-11GitHub Workflow: EOL Spaces & TABsGravatar Axel Huebl 3-0/+109
Avoid introduction of new EOL whitespaces in code and TABs with a github workflow.
2019-09-11Source: tabs2spacesGravatar Axel Huebl 28-667/+672
Manually fix tabs to four spaces and alignments for consistent prepresentation of source code over all machines.
2019-09-11Docs: tabs2spacesGravatar Axel Huebl 3-15/+18
convert tabs to spaces in documentation
2019-09-11LaserParticleContainer: Const CorrectnessGravatar Axel Huebl 2-2/+2
A parameter here can be declared more strict with `const`. Somehow the only const-correctness place I found with clang-tidy.
2019-09-11Headers: No Public Scope Using NamespaceGravatar Axel Huebl 4-182/+253
Writing `using namespace XY;` in public scope of a header file pollutes downstream namespaces that include that file directly or even indirectly. This can be cumbersome and lead to nifty naming conflicts that cause unclear selection of classes or ADL lookup issues. So one just avoids this as good practice and we did not do it in many places anyway.
2019-09-11typoGravatar MaxThevenet 1-1/+1
2019-09-11reorder bargesGravatar MaxThevenet 1-2/+2
2019-09-11Update README.mdGravatar MaxThevenet 1-0/+3
2019-09-11Docs: No EOL WhitespacesGravatar Tools 14-134/+134
End-of-line (EOL) whitespaces are verbose and increase diffs and merge conflicts over time. There is a notable exception to this rule, as two EOL white spaces in Markdown (`.md`) files introduce a soft-break (newline without paragraph). Cleaned them up for the `Docs/` directory with the following bash one-liner: ```bash find . -type f -not -path './.git*' \ -exec sed -i 's/[[:blank:]]*$//' {} \; ``` Committed as generic user so git does not credit the many lines to me: ```bash GIT_AUTHOR_NAME="Tools" GIT_AUTHOR_EMAIL="warpx@lbl.gov" \ git commit ```
2019-09-11Source & Tools: No EOL WhitespacesGravatar Tools 80-1183/+1182
End-of-line (EOL) whitespaces are verbose and increase diffs and merge conflicts over time. Cleaned them up for the `Source/`, `Examples/` and `Tools/` directory with the following bash one-liner: ```bash find . -type f -not -path './.git*' \ -exec sed -i 's/[[:blank:]]*$//' {} \; ``` Committed as generic user so git does not credit the many lines to me: ```bash GIT_AUTHOR_NAME="Tools" GIT_AUTHOR_EMAIL="warpx@lbl.gov" \ git commit ```
2019-09-11Removed files which should not stay in gitGravatar Luca Fedeli 2-0/+0
2019-09-11Revert style changeGravatar Luca Fedeli 4-112/+112