SedSat3 1.1.6
Sediment Source Apportionment Tool - Advanced statistical methods for environmental pollution research
Loading...
Searching...
No Matches
testmcmc.h
Go to the documentation of this file.
1#ifndef TESTMCMC_H
2#define TESTMCMC_H
3
4#include <vector>
5#include "parameter.h"
6
7//using namespace std;
8
10{
11public:
12 TestMCMC();
13 void InitializeParametersObservations(const vector<double> &mins, const vector<double> &maxs);
14 vector<Parameter> &Parameters() {return parameters;}
15 bool SetParameterValue(unsigned int i, double value); //set the parameter values for estimation
17 CVector GetPredictedValues(); // copied the predicted constituents and isotopes from observations into a vector
18 size_t ObservationsCount() {return 0; }
19
20private:
21 vector<Parameter> parameters;
22};
23
24#endif // TESTMCMC_H
CVector GetPredictedValues()
Definition testmcmc.cpp:29
bool SetParameterValue(unsigned int i, double value)
Definition testmcmc.cpp:18
void InitializeParametersObservations(const vector< double > &mins, const vector< double > &maxs)
Definition testmcmc.cpp:8
vector< Parameter > & Parameters()
Definition testmcmc.h:14
size_t ObservationsCount()
Definition testmcmc.h:18
vector< Parameter > parameters
Definition testmcmc.h:21
double GetObjectiveFunctionValue()
Definition testmcmc.cpp:24