diff options
author | 2022-06-02 23:43:53 +0200 | |
---|---|---|
committer | 2022-06-02 14:43:53 -0700 | |
commit | 57564a09f01a13b315447d7ab942ddd18d1281af (patch) | |
tree | 60f8baf45df96160b05717c2c46298e1d82b85ff /Source/Particles/MultiParticleContainer.cpp | |
parent | 81619e11b45c6621553e96601682c531c3cc49a3 (diff) | |
download | WarpX-57564a09f01a13b315447d7ab942ddd18d1281af.tar.gz WarpX-57564a09f01a13b315447d7ab942ddd18d1281af.tar.zst WarpX-57564a09f01a13b315447d7ab942ddd18d1281af.zip |
Move warning logger in ablastr (#3154)
* initial work to move the Warning Logger into ablastr
* progress with warn manager class
* moved Warning Logger in ablastr
* fixed bugs
* Fix: `SpectralFieldDataRZ.cpp`
Missing include for `WarpX::getCosts(lev);`
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
Diffstat (limited to 'Source/Particles/MultiParticleContainer.cpp')
-rw-r--r-- | Source/Particles/MultiParticleContainer.cpp | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/Source/Particles/MultiParticleContainer.cpp b/Source/Particles/MultiParticleContainer.cpp index 6349fe3d9..3805824a0 100644 --- a/Source/Particles/MultiParticleContainer.cpp +++ b/Source/Particles/MultiParticleContainer.cpp @@ -41,6 +41,8 @@ #include "WarpX.H" +#include <ablastr/warn_manager/WarnManager.H> + #include <AMReX.H> #include <AMReX_Array.H> #include <AMReX_Array4.H> @@ -1025,9 +1027,9 @@ void MultiParticleContainer::InitQuantumSync () m_quantum_sync_photon_creation_energy_threshold = temp; } else{ - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "Using default value (2*me*c^2) for photon energy creation threshold", - WarnPriority::low); + ablastr::warn_manager::WarnPriority::low); } // qs_minimum_chi_part is the minimum chi parameter to be @@ -1043,9 +1045,9 @@ void MultiParticleContainer::InitQuantumSync () } if(lookup_table_mode == "generate"){ - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "A new Quantum Synchrotron table will be generated.", - WarnPriority::low); + ablastr::warn_manager::WarnPriority::low); #ifndef WARPX_QED_TABLE_GEN amrex::Error("Error: Compile with QED_TABLE_GEN=TRUE to enable table generation!\n"); #else @@ -1055,9 +1057,9 @@ void MultiParticleContainer::InitQuantumSync () else if(lookup_table_mode == "load"){ std::string load_table_name; pp_qed_qs.query("load_table_from", load_table_name); - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "The Quantum Synchrotron table will be read from the file: " + load_table_name, - WarnPriority::low); + ablastr::warn_manager::WarnPriority::low); if(load_table_name.empty()){ amrex::Abort("Quantum Synchrotron table name should be provided"); } @@ -1068,10 +1070,10 @@ void MultiParticleContainer::InitQuantumSync () qs_minimum_chi_part); } else if(lookup_table_mode == "builtin"){ - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "The built-in Quantum Synchrotron table will be used. " "This low resolution table is intended for testing purposes only.", - WarnPriority::medium); + ablastr::warn_manager::WarnPriority::medium); m_shr_p_qs_engine->init_builtin_tables(qs_minimum_chi_part); } else{ @@ -1101,9 +1103,9 @@ void MultiParticleContainer::InitBreitWheeler () } if(lookup_table_mode == "generate"){ - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "A new Breit Wheeler table will be generated.", - WarnPriority::low); + ablastr::warn_manager::WarnPriority::low); #ifndef WARPX_QED_TABLE_GEN amrex::Error("Error: Compile with QED_TABLE_GEN=TRUE to enable table generation!\n"); #else @@ -1113,9 +1115,9 @@ void MultiParticleContainer::InitBreitWheeler () else if(lookup_table_mode == "load"){ std::string load_table_name; pp_qed_bw.query("load_table_from", load_table_name); - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "The Breit Wheeler table will be read from the file:" + load_table_name, - WarnPriority::low); + ablastr::warn_manager::WarnPriority::low); if(load_table_name.empty()){ amrex::Abort("Breit Wheeler table name should be provided"); } @@ -1126,10 +1128,10 @@ void MultiParticleContainer::InitBreitWheeler () table_data, bw_minimum_chi_part); } else if(lookup_table_mode == "builtin"){ - WarpX::GetInstance().RecordWarning("QED", + ablastr::warn_manager::WMRecordWarning("QED", "The built-in Breit Wheeler table will be used. " "This low resolution table is intended for testing purposes only.", - WarnPriority::medium); + ablastr::warn_manager::WarnPriority::medium); m_shr_p_bw_engine->init_builtin_tables(bw_minimum_chi_part); } else{ |