SWHSNoPCM
All Classes Files Functions
Populate.hpp
Go to the documentation of this file.
1 
7 #ifndef Populate_h
8 #define Populate_h
9 
10 #include <vector>
11 
12 using std::vector;
13 
16 class Populate {
17  public:
21  Populate(vector<double> &T_W);
26  void operator()(vector<double> &y, double t);
27 
28  private:
29  vector<double> &T_W;
30 
31 };
32 
33 #endif
Class for populating a list during an ODE solution process.
Definition: Populate.hpp:16
Populate(vector< double > &T_W)
Constructor for Populate objects.
void operator()(vector< double > &y, double t)
appends solution point for current ODE solution step