aboutsummaryrefslogtreecommitdiff
path: root/Source/Python/pyWarpX.cpp
diff options
context:
space:
mode:
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();} );