Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1033 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
10 | ** |
||
11 | ** This program is distributed in the hope that it will be useful, |
||
12 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
14 | ** GNU General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
810 | werner | 19 | #ifndef FOMEWRAPPER_H |
20 | #define FOMEWRAPPER_H |
||
21 | |||
22 | #include "expressionwrapper.h" |
||
870 | werner | 23 | |
905 | werner | 24 | namespace ABE { |
811 | werner | 25 | class FMStand; |
810 | werner | 26 | |
811 | werner | 27 | |
810 | werner | 28 | /** FOMEWrapper provides the context for the Forest Management Engine |
29 | * This wrapper blends activties, stand variables, and agent variables together. |
||
30 | */ |
||
31 | |||
32 | class FOMEWrapper: public ExpressionWrapper |
||
33 | { |
||
34 | public: |
||
869 | werner | 35 | FOMEWrapper(): mStand(0) {} |
36 | FOMEWrapper(const FMStand *stand): mStand(stand) {} |
||
810 | werner | 37 | virtual const QStringList getVariablesList(); |
38 | virtual double value(const int variableIndex); |
||
39 | |||
40 | private: |
||
41 | void buildVarList(); |
||
42 | double valueActivity(const int variableIndex); |
||
43 | double valueStand(const int variableIndex); |
||
811 | werner | 44 | double valueSite(const int variableIndex); |
45 | const FMStand *mStand; |
||
810 | werner | 46 | }; |
47 | |||
870 | werner | 48 | } // namespace |
810 | werner | 49 | |
50 | #endif // FOMEWRAPPER_H |