mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 12:54:50 +01:00
10 lines
309 B
C++
10 lines
309 B
C++
#include <string>
|
|
#include "Chemistry/ChemistryModule.hpp"
|
|
|
|
namespace poet
|
|
{
|
|
void writeStatsToCSV(const std::vector<ChemistryModule::error_stats> &all_stats,
|
|
const std::vector<std::string> &species_names,
|
|
const std::string &filename);
|
|
} // namespace poet
|