Documentation of UrbanFireXDT
Documentation of UrbanFireXDT
Loading...
Searching...
No Matches
setup_and_dataloading.h
Go to the documentation of this file.
1/*
2 *
3 * setup_and_dataloading.h
4 *
5 * Contains all code required for initializing the
6 * simulation and loading central data
7 *
8 * */
9
10#ifndef SETUP_AND_DATALOADING_H
11#define SETUP_AND_DATALOADING_H
12
13#include <string>
14
15
20namespace configld {
21
22 bool load_config_file(unsigned long scenario_id, std::string& filepath);
23
24 bool load_data_from_central_database(const char* filepath);
25
40 void output_variable_values(std::ostream& current_outstream);
41
42}
43
44
45
46
47#endif
Definition setup_and_dataloading.h:20
bool load_config_file(unsigned long scenario_id, std::string &filepath)
Load the config file, that is passed as command line argument.
bool load_data_from_central_database(const char *filepath)
Load the complete simulation structure from the central database, and also load the recorded time ser...
Definition setup_and_dataloading.cpp:1247
void output_variable_values(std::ostream &current_outstream)
Outputs the current simulation configuration and all parameter settings to the specified output strea...
Definition setup_and_dataloading.cpp:1693