source: issm/trunk-jpl/src/c/classes/Params/Parameters.h@ 22617

Last change on this file since 22617 was 22617, checked in by Mathieu Morlighem, 7 years ago

CHG: variable descriptors should not be in params (it's really messed up because we have two objects with the same enum in params and inputs, which is totally confusing), created a special param to hold all of the variables

File size: 3.0 KB
RevLine 
[14996]1#ifndef _CONTAINER_PARAMETERS_H_
2#define _CONTAINER_PARAMETERS_H_
3#include <stdio.h>
4
5/*forward declarations */
[20635]6class Param;
7class DataSet;
[14996]8template <class doublematrix> class Matrix;
9template <class doubletype> class Vector;
[15012]10#include "../../shared/shared.h"
[14996]11
[20635]12#define NUMPARAMS ParametersENDEnum - ParametersSTARTEnum -1
13
[14996]14/*!\brief Declaration of Parameters class.
15 *
[20635]16 * Declaration of Parameters class. Parameters are a static array of Parameter objects.
[14996]17 */
[20635]18class Parameters{
[14996]19
[20635]20 private:
21 Param* params[NUMPARAMS];
22
[14996]23 public:
24
25 /*constructors, destructors*/
26 Parameters();
27 ~Parameters();
28
29 /*numerics*/
[20635]30 void AddObject(Param* newparam);
31 Parameters* Copy(void);
[20827]32 void DeepEcho();
33 void Echo();
[20943]34 void Delete(int enum_type);
[20827]35 bool Exist(int enum_type);
[20635]36 void Marshall(char** pmarshalled_data, int* pmarshalled_data_size, int marshall_direction);
[14996]37
38 void FindParam(bool* pinteger,int enum_type);
39 void FindParam(int* pinteger,int enum_type);
40 void FindParam(IssmDouble* pscalar, int enum_type);
41 void FindParam(IssmDouble* pscalar, int enum_type,IssmDouble time);
42 void FindParam(char** pstring,int enum_type);
43 void FindParam(char*** pstringarray,int* pM,int enum_type);
44 void FindParam(int** pintarray,int* pM,int enum_type);
45 void FindParam(int** pintarray,int* pM,int* PN,int enum_type);
46 void FindParam(IssmDouble** pIssmDoublearray,int* pM,int enum_type);
47 void FindParam(IssmDouble** pIssmDoublearray,int* pM,int* pN,int enum_type);
48 void FindParam(IssmDouble*** parray,int* pM, int** pmdims_array,int** pndims_array,int enum_type);
49 void FindParam(Vector<IssmDouble>** pvec,int enum_type);
50 void FindParam(Matrix<IssmDouble>** pmat,int enum_type);
51 void FindParam(FILE** pfid,int enum_type);
52 void FindParam(DataSet** pdataset, int enum_type);
[22617]53 void FindParamInDataset(IssmDouble** pIssmDoublearray,int* pM,int* pN,int dataset_type,int enum_type);
[14996]54
55 void SetParam(bool boolean,int enum_type);
56 void SetParam(int integer,int enum_type);
57 void SetParam(IssmDouble scalar, int enum_type);
58 void SetParam(char* string,int enum_type);
59 void SetParam(char** stringarray,int M,int enum_type);
60 void SetParam(IssmDouble* IssmDoublearray,int M,int enum_type);
61 void SetParam(IssmDouble* IssmDoublearray,int M,int N,int enum_type);
62 void SetParam(int* intarray,int M,int enum_type);
63 void SetParam(int* intarray,int M,int N,int enum_type);
64 void SetParam(Vector<IssmDouble>* vec,int enum_type);
65 void SetParam(Matrix<IssmDouble>* mat,int enum_type);
66 void SetParam(FILE* fid,int enum_type);
[16792]67 void SetParam(DataSet* dataset,int enum_type);
[14996]68
[20635]69 Param* FindParamObject(int enum_type);
[14996]70
[22425]71 /*Specific instantiations for IssmDouble*: */
72 #if defined(_HAVE_ADOLC_) && !defined(_WRAPPERS_)
73 void FindParamAndMakePassive(double* pscalar, int enum_type);
74 #endif
75
[14996]76};
77
78/*Methods relating to parameters: */
[22559]79char *OptionsFromAnalysis(char** ptoolkit,Parameters *parameters,int analysis_type);
[20635]80void ToolkitsOptionsFromAnalysis(Parameters* parameters,int analysis_type);
[14996]81
82#endif //ifndef _PARAMETERS_H_
Note: See TracBrowser for help on using the repository browser.