aboutsummaryrefslogtreecommitdiff
path: root/Source/Python/pyWarpX.cpp
diff options
context:
space:
mode:
authorGravatar Remi Lehe <remi.lehe@normalesup.org> 2023-08-25 10:20:20 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-25 17:20:20 +0000
commit463f2a52ecc7bc040d9d0e3a21fb4104f3534382 (patch)
tree71ee943c90606bbf044b478e4d26e2fef38d9e35 /Source/Python/pyWarpX.cpp
parent02a6356713e058f3622b0c2dd6c606f4373b0197 (diff)
downloadWarpX-463f2a52ecc7bc040d9d0e3a21fb4104f3534382.tar.gz
WarpX-463f2a52ecc7bc040d9d0e3a21fb4104f3534382.tar.zst
WarpX-463f2a52ecc7bc040d9d0e3a21fb4104f3534382.zip
Do not pre-processing routine in Python initialization (#4231)
Diffstat (limited to '')
-rw-r--r--Source/Python/pyWarpX.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Python/pyWarpX.cpp b/Source/Python/pyWarpX.cpp
index 31c8e6ec6..64db77153 100644
--- a/Source/Python/pyWarpX.cpp
+++ b/Source/Python/pyWarpX.cpp
@@ -120,12 +120,6 @@ PYBIND11_MODULE(PYWARPX_MODULE_NAME, m) {
"Initialize AMReX library");
m.def("amrex_finalize", [] () { amrex::Finalize(); },
"Close out the amrex related data");
- m.def("convert_lab_params_to_boost", &ConvertLabParamsToBoost,
- "Convert input parameters from the lab frame to the boosted frame");
- m.def("read_BC_params", &ReadBCParams,
- "Read the boundary condition parametes and check for consistency");
- m.def("check_gridding_for_RZ_spectral", &CheckGriddingForRZSpectral,
- "Ensure that the grid is setup appropriately with using the RZ spectral solver");
// Expose functions to get the processor number
m.def("getNProcs", [](){return amrex::ParallelDescriptor::NProcs();} );