diff --git a/Examples/EMMinkowski/Main_EMKerrBH.cpp b/Examples/EMMinkowski/Main_EMKerrBH.cpp index a918cdd..5d1bdf5 100644 --- a/Examples/EMMinkowski/Main_EMKerrBH.cpp +++ b/Examples/EMMinkowski/Main_EMKerrBH.cpp @@ -3,22 +3,22 @@ Main method to run simulation */ #include "EMFieldLevel.hpp" // new Level class #include "SetupFunctions.hpp" //For setting up MPI processes -#include "runGRChombo.hpp" //main run function +#include "runGRBoondi.hpp" //main run function int main(int argc, char *argv[]) { mainSetup(argc, argv); // setup MPI processes - int status = runGRChombo( + int status = runGRBoondi( argc, argv); // run simulation with modified level class if (status == 0) { - pout() << "GRChombo finished." << std::endl; + pout() << "GRBoondi finished." << std::endl; } else { - pout() << "GRChombo failed with return code " << status << std::endl; + pout() << "GRBoondi failed with return code " << status << std::endl; } mainFinalize(); // cleanup MPI processes diff --git a/Examples/NonLinearProcaKerrBH/Main_NonlinearProcaKerrBH.cpp b/Examples/NonLinearProcaKerrBH/Main_NonlinearProcaKerrBH.cpp index 06df70a..f1a4388 100644 --- a/Examples/NonLinearProcaKerrBH/Main_NonlinearProcaKerrBH.cpp +++ b/Examples/NonLinearProcaKerrBH/Main_NonlinearProcaKerrBH.cpp @@ -3,22 +3,22 @@ Main method to run simulation */ #include "NonlinearProcaFieldLevel.hpp" // new Level class #include "SetupFunctions.hpp" //For setting up MPI processes -#include "runGRChombo.hpp" //main run function +#include "runGRBoondi.hpp" //main run function int main(int argc, char *argv[]) { mainSetup(argc, argv); // setup MPI processes - int status = runGRChombo( + int status = runGRBoondi( argc, argv); // run simulation with modified level class if (status == 0) { - pout() << "GRChombo finished." << std::endl; + pout() << "GRBoondi finished." << std::endl; } else { - pout() << "GRChombo failed with return code " << status << std::endl; + pout() << "GRBoondi failed with return code " << status << std::endl; } mainFinalize(); // cleanup MPI processes diff --git a/Examples/ProcaKerrBH/Main_ProcaKerrBH.cpp b/Examples/ProcaKerrBH/Main_ProcaKerrBH.cpp index 563e62c..73639df 100644 --- a/Examples/ProcaKerrBH/Main_ProcaKerrBH.cpp +++ b/Examples/ProcaKerrBH/Main_ProcaKerrBH.cpp @@ -3,22 +3,22 @@ Main method to run simulation */ #include "ProcaFieldLevel.hpp" // new Level class #include "SetupFunctions.hpp" //For setting up MPI processes -#include "runGRChombo.hpp" //main run function +#include "runGRBoondi.hpp" //main run function int main(int argc, char *argv[]) { mainSetup(argc, argv); // setup MPI processes - int status = runGRChombo( + int status = runGRBoondi( argc, argv); // run simulation with modified level class if (status == 0) { - pout() << "GRChombo finished." << std::endl; + pout() << "GRBoondi finished." << std::endl; } else { - pout() << "GRChombo failed with return code " << status << std::endl; + pout() << "GRBoondi failed with return code " << status << std::endl; } mainFinalize(); // cleanup MPI processes diff --git a/Examples/ProcaKerrdeSitter/Main_ProcaKdS.cpp b/Examples/ProcaKerrdeSitter/Main_ProcaKdS.cpp index 563e62c..73639df 100644 --- a/Examples/ProcaKerrdeSitter/Main_ProcaKdS.cpp +++ b/Examples/ProcaKerrdeSitter/Main_ProcaKdS.cpp @@ -3,22 +3,22 @@ Main method to run simulation */ #include "ProcaFieldLevel.hpp" // new Level class #include "SetupFunctions.hpp" //For setting up MPI processes -#include "runGRChombo.hpp" //main run function +#include "runGRBoondi.hpp" //main run function int main(int argc, char *argv[]) { mainSetup(argc, argv); // setup MPI processes - int status = runGRChombo( + int status = runGRBoondi( argc, argv); // run simulation with modified level class if (status == 0) { - pout() << "GRChombo finished." << std::endl; + pout() << "GRBoondi finished." << std::endl; } else { - pout() << "GRChombo failed with return code " << status << std::endl; + pout() << "GRBoondi failed with return code " << status << std::endl; } mainFinalize(); // cleanup MPI processes diff --git a/Source/Core/runGRChombo.hpp b/Source/Core/runGRBoondi.hpp similarity index 97% rename from Source/Core/runGRChombo.hpp rename to Source/Core/runGRBoondi.hpp index 7558cd8..25d45ca 100644 --- a/Source/Core/runGRChombo.hpp +++ b/Source/Core/runGRBoondi.hpp @@ -29,7 +29,7 @@ Please refer to LICENSE in GRBoondi's root directory // Main run function templated over level class -template int runGRChombo(int argc, char *argv[]) +template int runGRBoondi(int argc, char *argv[]) { // Load the parameter file and construct the SimulationParameter class // To add more parameters edit the SimulationParameters file.