Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Private Member Functions | Private Attributes
Parameters Class Reference

Declaration of Parameters class.
More...

#include <Parameters.h>

Public Member Functions

 Parameters ()
 
 ~Parameters ()
 
void AddObject (Param *newparam)
 
ParametersCopy (void)
 
void DeepEcho ()
 
void Echo ()
 
void Delete (int enum_type)
 
bool Exist (int enum_type)
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
void FindParam (bool *pinteger, int enum_type)
 
void FindParam (int *pinteger, int enum_type)
 
void FindParam (IssmDouble *pscalar, int enum_type)
 
void FindParam (IssmDouble *pscalar, int enum_type, IssmDouble time)
 
void FindParam (IssmDouble *pscalar, int row, IssmDouble time, int enum_type)
 
void FindParam (char **pstring, int enum_type)
 
void FindParam (char ***pstringarray, int *pM, int enum_type)
 
void FindParam (int **pintarray, int *pM, int enum_type)
 
void FindParam (int **pintarray, int *pM, int *PN, int enum_type)
 
void FindParam (IssmDouble **pIssmDoublearray, int *pM, int enum_type)
 
void FindParam (IssmDouble **pIssmDoublearray, int *pM, int *pN, int enum_type)
 
void FindParam (IssmDouble ***parray, int *pM, int **pmdims_array, int **pndims_array, int enum_type)
 
void FindParam (Vector< IssmDouble > **pvec, int enum_type)
 
void FindParam (Matrix< IssmDouble > **pmat, int enum_type)
 
void FindParam (FILE **pfid, int enum_type)
 
void FindParam (DataSet **pdataset, int enum_type)
 
void FindParamAndMakePassive (IssmPDouble *pscalar, int enum_type)
 
void FindParamAndMakePassive (IssmPDouble **pvec, int *pM, int enum_type)
 
void FindParamInDataset (IssmDouble **pIssmDoublearray, int *pM, int *pN, int dataset_type, int enum_type)
 
IssmDouble FindParam (int enum_type)
 
void SetParam (bool boolean, int enum_type)
 
void SetParam (int integer, int enum_type)
 
void SetParam (IssmDouble scalar, int enum_type)
 
void SetParam (char *string, int enum_type)
 
void SetParam (char **stringarray, int M, int enum_type)
 
void SetParam (IssmDouble *IssmDoublearray, int M, int enum_type)
 
void SetParam (IssmDouble *IssmDoublearray, int M, int N, int enum_type)
 
void SetParam (int *intarray, int M, int enum_type)
 
void SetParam (int *intarray, int M, int N, int enum_type)
 
void SetParam (Vector< IssmDouble > *vec, int enum_type)
 
void SetParam (Matrix< IssmDouble > *mat, int enum_type)
 
void SetParam (FILE *fid, int enum_type)
 
void SetParam (DataSet *dataset, int enum_type)
 
ParamFindParamObject (int enum_type)
 

Private Member Functions

int EnumToIndex (int enum_in)
 

Private Attributes

Paramparams [NUMPARAMS]
 

Detailed Description

Declaration of Parameters class.

Declaration of Parameters class. Parameters are a static array of Parameter objects.

Definition at line 18 of file Parameters.h.

Constructor & Destructor Documentation

◆ Parameters()

Parameters::Parameters ( )

Definition at line 45 of file Parameters.cpp.

45  {/*{{{*/
46  for(int i=0;i<NUMPARAMS;i++) this->params[i] = NULL;
47  return;
48 }

◆ ~Parameters()

Parameters::~Parameters ( )

Definition at line 50 of file Parameters.cpp.

50  {/*{{{*/
51  for(int i=0;i<NUMPARAMS;i++){
52  if(this->params[i]) delete this->params[i];
53  }
54  return;
55 }

Member Function Documentation

◆ EnumToIndex()

int Parameters::EnumToIndex ( int  enum_in)
private

Definition at line 57 of file Parameters.cpp.

57  {/*{{{*/
58 
59  /*Make sure this parameter is at the right place*/
60  #ifdef _ISSM_DEBUG_
61  if(enum_in<=ParametersSTARTEnum) _error_("Enum "<<EnumToStringx(enum_in)<<" should appear after ParametersSTARTEnum");
62  if(enum_in>=ParametersENDEnum) _error_("Enum "<<EnumToStringx(enum_in)<<" should appear before ParametersENDEnum");
63  #endif
64  return enum_in - ParametersSTARTEnum -1;
65 }/*}}}*/

◆ AddObject()

void Parameters::AddObject ( Param newparam)

Definition at line 67 of file Parameters.cpp.

67  {/*{{{*/
68 
69  /*Get Enum from Param*/
70  _assert_(newparam);
71  int param_enum = newparam->InstanceEnum();
72 
73  /*Get index in array*/
74  int index = EnumToIndex(param_enum);
75 
76  /*Delete param if it already exists*/
77  if(this->params[index]){
78  delete this->params[index];
79  this->params[index] = NULL;
80  }
81 
82  /*Add param to array*/
83  this->params[index] = newparam;
84 }

◆ Copy()

Parameters * Parameters::Copy ( void  )

Definition at line 86 of file Parameters.cpp.

86  {/*{{{*/
87 
88  Parameters* output = new Parameters();
89 
90  for(int i=0;i<NUMPARAMS;i++){
91  if(this->params[i]){
92  output->params[i]=this->params[i]->copy();
93  }
94  }
95 
96  return output;
97 }

◆ DeepEcho()

void Parameters::DeepEcho ( void  )

Definition at line 99 of file Parameters.cpp.

99  {/*{{{*/
100  for(int i=0;i<NUMPARAMS;i++) {
101  if(this->params[i]) this->params[i]->DeepEcho();
102  }
103  return;
104 }

◆ Echo()

void Parameters::Echo ( void  )

Definition at line 106 of file Parameters.cpp.

106  {/*{{{*/
107  for(int i=0;i<NUMPARAMS;i++) {
108  if(this->params[i]) this->params[i]->Echo();
109  }
110  return;
111 }

◆ Delete()

void Parameters::Delete ( int  enum_type)

Definition at line 243 of file Parameters.cpp.

243  {/*{{{*/
244 
245  int index = EnumToIndex(param_enum);
246  if(this->params[index]){
247  delete this->params[index];
248  this->params[index] = NULL;
249  }
250 
251  return;
252 }

◆ Exist()

bool Parameters::Exist ( int  enum_type)

Definition at line 254 of file Parameters.cpp.

254  {/*{{{*/
255 
256  int index = EnumToIndex(param_enum);
257  if(this->params[index]) return true;
258 
259  return false;
260 }

◆ Marshall()

void Parameters::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)

Definition at line 113 of file Parameters.cpp.

113  {/*{{{*/
114 
115  int obj_enum=-1;
116  int num_params=0;
117 
119 
120  if(marshall_direction==MARSHALLING_FORWARD || marshall_direction==MARSHALLING_SIZE){
121 
122  /*Marshall num_params first*/
123  for(int i=0;i<NUMPARAMS;i++){
124  if(this->params[i]) num_params++;
125  }
126  MARSHALLING(num_params);
127 
128  /*Marshall Parameters one by one now*/
129  for(int i=0;i<NUMPARAMS;i++){
130  if(this->params[i]){
131  obj_enum = this->params[i]->ObjectEnum();
132  MARSHALLING(obj_enum);
133  this->params[i]->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
134  }
135  }
136  }
137  else{
138 
139  /*Get number of params marshalled*/
140  MARSHALLING(num_params);
141 
142  /*Recover parameters one by one*/
143  for(int i=0;i<num_params;i++){
144 
145  /*Recover enum of object first: */
146  MARSHALLING(obj_enum);
147 
148  if(obj_enum==DoubleParamEnum){
149  DoubleParam* doubleparam=NULL;
150  doubleparam=new DoubleParam();
151  doubleparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
152  this->AddObject(doubleparam);
153  }
154  else if(obj_enum==IntParamEnum){
155  IntParam* intparam=NULL;
156  intparam=new IntParam();
157  intparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
158  this->AddObject(intparam);
159  }
160  else if(obj_enum==IntMatParamEnum){
161  IntMatParam* intmparam=NULL;
162  intmparam=new IntMatParam();
163  intmparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
164  this->AddObject(intmparam);
165  }
166  else if(obj_enum==IntVecParamEnum){
167  IntVecParam* intvparam=NULL;
168  intvparam=new IntVecParam();
169  intvparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
170  this->AddObject(intvparam);
171  }
172  else if(obj_enum==BoolParamEnum){
173  BoolParam* boolparam=NULL;
174  boolparam=new BoolParam();
175  boolparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
176  this->AddObject(boolparam);
177  }
178  else if(obj_enum==DataSetParamEnum){
179  DataSetParam* dsparam=NULL;
180  dsparam=new DataSetParam();
181  dsparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
182  this->AddObject(dsparam);
183  }
184  else if(obj_enum==DoubleMatArrayParamEnum){
185  DoubleMatArrayParam* dmaparam=NULL;
186  dmaparam=new DoubleMatArrayParam();
187  dmaparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
188  this->AddObject(dmaparam);
189  }
190  else if(obj_enum==DoubleMatParamEnum){
191  DoubleMatParam* dmparam=NULL;
192  dmparam=new DoubleMatParam();
193  dmparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
194  this->AddObject(dmparam);
195  }
196  else if(obj_enum==DoubleVecParamEnum){
197  DoubleVecParam* dvparam=NULL;
198  dvparam=new DoubleVecParam();
199  dvparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
200  this->AddObject(dvparam);
201  }
202  else if(obj_enum==FileParamEnum){
203  FileParam* fileparam=NULL;
204  fileparam=new FileParam();
205  fileparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
206  delete fileparam;
207  /* No need to add this object, the pointer is not valid
208  The FemModel should reset all FileParams in the restart function */
209  }
210  else if(obj_enum==StringParamEnum){
211  StringParam* sparam=NULL;
212  sparam=new StringParam();
213  sparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
214  this->AddObject(sparam);
215  }
216  else if(obj_enum==StringArrayParamEnum){
217  StringArrayParam* saparam=NULL;
218  saparam=new StringArrayParam();
219  saparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
220  this->AddObject(saparam);
221  }
222  else if(obj_enum==TransientParamEnum){
223  TransientParam* transparam=NULL;
224  transparam=new TransientParam();
225  transparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
226  this->AddObject(transparam);
227  }
228  else if(obj_enum==TransientArrayParamEnum){
229  TransientArrayParam* transarrayparam=NULL;
230  transarrayparam=new TransientArrayParam();
231  transarrayparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
232  this->AddObject(transarrayparam);
233  }
234  else if(obj_enum==GenericParamEnum){
235  /*Skip for now (we don't want to Marhsall Comms)*/
236  }
237  }
238  }
239 }

◆ FindParam() [1/17]

void Parameters::FindParam ( bool *  pinteger,
int  enum_type 
)

Definition at line 262 of file Parameters.cpp.

262  { _assert_(this);/*{{{*/
263 
264  int index = EnumToIndex(param_enum);
265  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
266  this->params[index]->GetParameterValue(pbool);
267 }

◆ FindParam() [2/17]

void Parameters::FindParam ( int *  pinteger,
int  enum_type 
)

Definition at line 269 of file Parameters.cpp.

269  { _assert_(this);/*{{{*/
270 
271  int index = EnumToIndex(param_enum);
272  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
273  this->params[index]->GetParameterValue(pinteger);
274 }

◆ FindParam() [3/17]

void Parameters::FindParam ( IssmDouble pscalar,
int  enum_type 
)

Definition at line 276 of file Parameters.cpp.

276  { _assert_(this);/*{{{*/
277  int index = EnumToIndex(param_enum);
278  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
279  this->params[index]->GetParameterValue(pscalar);
280 }

◆ FindParam() [4/17]

void Parameters::FindParam ( IssmDouble pscalar,
int  enum_type,
IssmDouble  time 
)

Definition at line 282 of file Parameters.cpp.

282  { _assert_(this);/*{{{*/
283 
284  int index = EnumToIndex(param_enum);
285  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
286  this->params[index]->GetParameterValue(pscalar,time);
287 }

◆ FindParam() [5/17]

void Parameters::FindParam ( IssmDouble pscalar,
int  row,
IssmDouble  time,
int  enum_type 
)

Definition at line 289 of file Parameters.cpp.

289  { _assert_(this);/*{{{*/
290 
291  int index = EnumToIndex(param_enum);
292  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
293  this->params[index]->GetParameterValue(pscalar,row,time);
294 }

◆ FindParam() [6/17]

void Parameters::FindParam ( char **  pstring,
int  enum_type 
)

Definition at line 296 of file Parameters.cpp.

296  { _assert_(this);/*{{{*/
297 
298  int index = EnumToIndex(param_enum);
299  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
300  this->params[index]->GetParameterValue(pstring);
301 
302 }

◆ FindParam() [7/17]

void Parameters::FindParam ( char ***  pstringarray,
int *  pM,
int  enum_type 
)

Definition at line 304 of file Parameters.cpp.

304  { _assert_(this);/*{{{*/
305 
306  int index = EnumToIndex(param_enum);
307  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
308  this->params[index]->GetParameterValue(pstringarray,pM);
309 }

◆ FindParam() [8/17]

void Parameters::FindParam ( int **  pintarray,
int *  pM,
int  enum_type 
)

Definition at line 311 of file Parameters.cpp.

311  { _assert_(this);/*{{{*/
312 
313  int index = EnumToIndex(param_enum);
314  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
315  this->params[index]->GetParameterValue(pintarray,pM);
316 
317 }

◆ FindParam() [9/17]

void Parameters::FindParam ( int **  pintarray,
int *  pM,
int *  PN,
int  enum_type 
)

Definition at line 319 of file Parameters.cpp.

319  { _assert_(this);/*{{{*/
320 
321  int index = EnumToIndex(param_enum);
322  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
323  this->params[index]->GetParameterValue(pintarray,pM,pN);
324 
325 }

◆ FindParam() [10/17]

void Parameters::FindParam ( IssmDouble **  pIssmDoublearray,
int *  pM,
int  enum_type 
)

Definition at line 327 of file Parameters.cpp.

327  { _assert_(this);/*{{{*/
328 
329  int index = EnumToIndex(param_enum);
330 
331  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
332  this->params[index]->GetParameterValue(pIssmDoublearray,pM);
333 
334 }

◆ FindParam() [11/17]

void Parameters::FindParam ( IssmDouble **  pIssmDoublearray,
int *  pM,
int *  pN,
int  enum_type 
)

Definition at line 336 of file Parameters.cpp.

336  { _assert_(this);/*{{{*/
337 
338  int index = EnumToIndex(param_enum);
339  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
340  this->params[index]->GetParameterValue(pIssmDoublearray,pM,pN);
341 }

◆ FindParam() [12/17]

void Parameters::FindParam ( IssmDouble ***  parray,
int *  pM,
int **  pmdims_array,
int **  pndims_array,
int  enum_type 
)

Definition at line 343 of file Parameters.cpp.

343  { _assert_(this);/*{{{*/
344 
345  int index = EnumToIndex(param_enum);
346  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
347  this->params[index]->GetParameterValue(parray,pM,pmdims_array,pndims_array);
348 }

◆ FindParam() [13/17]

void Parameters::FindParam ( Vector< IssmDouble > **  pvec,
int  enum_type 
)

Definition at line 350 of file Parameters.cpp.

350  { _assert_(this);/*{{{*/
351 
352  int index = EnumToIndex(param_enum);
353  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
354  this->params[index]->GetParameterValue(pvec);
355 }

◆ FindParam() [14/17]

void Parameters::FindParam ( Matrix< IssmDouble > **  pmat,
int  enum_type 
)

Definition at line 357 of file Parameters.cpp.

357  { _assert_(this);/*{{{*/
358 
359  int index = EnumToIndex(param_enum);
360  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
361  this->params[index]->GetParameterValue(pmat);
362 }

◆ FindParam() [15/17]

void Parameters::FindParam ( FILE **  pfid,
int  enum_type 
)

Definition at line 364 of file Parameters.cpp.

364  { _assert_(this);/*{{{*/
365 
366  int index = EnumToIndex(param_enum);
367  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
368  this->params[index]->GetParameterValue(pfid);
369 }

◆ FindParam() [16/17]

void Parameters::FindParam ( DataSet **  pdataset,
int  enum_type 
)

Definition at line 371 of file Parameters.cpp.

371  { /*{{{*/
372  _assert_(this);
373 
374  int index = EnumToIndex(param_enum);
375  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
376  this->params[index]->GetParameterValue(pdataset);
377 }

◆ FindParamAndMakePassive() [1/2]

void Parameters::FindParamAndMakePassive ( IssmPDouble pscalar,
int  enum_type 
)

Definition at line 379 of file Parameters.cpp.

379  { _assert_(this);/*{{{*/
380 
381  /*Get "active" parameter*/
382  IssmDouble intermediary;
383  int index = EnumToIndex(param_enum);
384  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
385  this->params[index]->GetParameterValue(&intermediary);
386 
387  /*cast to "passive"*/
388  *pscalar=reCast<IssmPDouble>(intermediary);
389 }

◆ FindParamAndMakePassive() [2/2]

void Parameters::FindParamAndMakePassive ( IssmPDouble **  pvec,
int *  pM,
int  enum_type 
)

Definition at line 391 of file Parameters.cpp.

391  { _assert_(this);/*{{{*/
392 
393  int index = EnumToIndex(param_enum);
394 
395  /*Output*/
396  int n;
397  IssmDouble* vector = NULL;
398 
399  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
400  this->params[index]->GetParameterValue(&vector,&n);
401 
402  /*Make output passive*/
403  IssmPDouble* output = xNew<IssmPDouble>(n);
404  for(int i=0;i<n;i++) output[i] = reCast<IssmPDouble>(vector[i]);
405 
406  /*assign output pointers*/
407  if(pvec) *pvec = output;
408  if(pM) *pM = n;
409 }/*}}}*/

◆ FindParamInDataset()

void Parameters::FindParamInDataset ( IssmDouble **  pIssmDoublearray,
int *  pM,
int *  pN,
int  dataset_type,
int  enum_type 
)

Definition at line 410 of file Parameters.cpp.

410  {/*{{{*/
411  _assert_(this);
412 
413  int index = EnumToIndex(dataset_type);
414  if(!this->params[index]) _error_("Parameter " << EnumToStringx(dataset_type) <<" not set");
415  if(this->params[index]->ObjectEnum()!=DataSetParamEnum) _error_("Parameter " << EnumToStringx(dataset_type) <<" is not a DataSetParam!");
416 
417  DataSetParam* dataset_param = xDynamicCast<DataSetParam*>(this->params[index]);
418  for( vector<Object*>::iterator object=dataset_param->value->objects.begin() ; object < dataset_param->value->objects.end(); object++ ){
419  Param* param = xDynamicCast<Param*>(*object);
420  if(param->InstanceEnum()==enum_type){
421  param->GetParameterValue(pIssmDoublearray,pM,pN);
422  return;
423  }
424  }
425 
426  /*Error out if we reached this point*/
427  _error_("Could not find Enum "<<EnumToStringx(enum_type)<<" in dataset param "<<EnumToStringx(dataset_type));
428 }

◆ FindParam() [17/17]

IssmDouble Parameters::FindParam ( int  enum_type)

Definition at line 430 of file Parameters.cpp.

430  { _assert_(this);/*{{{*/
431 
432  int index = EnumToIndex(param_enum);
433  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
434 
435  IssmDouble value;
436  this->params[index]->GetParameterValue(&value);
437  return value;
438 }

◆ SetParam() [1/13]

void Parameters::SetParam ( bool  boolean,
int  enum_type 
)

Definition at line 441 of file Parameters.cpp.

441  {/*{{{*/
442 
443  Param* param=NULL;
444 
445  /*first, figure out if the param has already been created: */
446  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
447 
448  if(param) param->SetValue(boolean); //already exists, just set it.
449  else this->AddObject(new BoolParam(enum_type,boolean)); //just add the new parameter.
450 }

◆ SetParam() [2/13]

void Parameters::SetParam ( int  integer,
int  enum_type 
)

Definition at line 452 of file Parameters.cpp.

452  {/*{{{*/
453 
454  Param* param=NULL;
455 
456  /*first, figure out if the param has already been created: */
457  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
458 
459  if(param) param->SetValue(integer); //already exists, just set it.
460  else this->AddObject(new IntParam(enum_type,integer)); //just add the new parameter.
461 }

◆ SetParam() [3/13]

void Parameters::SetParam ( IssmDouble  scalar,
int  enum_type 
)

Definition at line 463 of file Parameters.cpp.

463  {/*{{{*/
464 
465  Param* param=NULL;
466 
467  /*first, figure out if the param has already been created: */
468  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
469  if(param) param->SetValue(scalar); //already exists, just set it.
470  else this->AddObject(new DoubleParam(enum_type,scalar)); //just add the new parameter.
471 }

◆ SetParam() [4/13]

void Parameters::SetParam ( char *  string,
int  enum_type 
)

Definition at line 473 of file Parameters.cpp.

473  {/*{{{*/
474 
475  Param* param=NULL;
476 
477  /*first, figure out if the param has already been created: */
478  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
479 
480  if(param) param->SetValue(string); //already exists, just set it.
481  else this->AddObject(new StringParam(enum_type,string)); //just add the new parameter.
482 }

◆ SetParam() [5/13]

void Parameters::SetParam ( char **  stringarray,
int  M,
int  enum_type 
)

Definition at line 484 of file Parameters.cpp.

484  {/*{{{*/
485 
486  Param* param=NULL;
487 
488  /*first, figure out if the param has already been created: */
489  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
490 
491  if(param) param->SetValue(stringarray,M); //already exists, just set it.
492  else this->AddObject(new StringArrayParam(enum_type,stringarray,M)); //just add the new parameter.
493 }

◆ SetParam() [6/13]

void Parameters::SetParam ( IssmDouble IssmDoublearray,
int  M,
int  enum_type 
)

Definition at line 495 of file Parameters.cpp.

495  {/*{{{*/
496 
497  Param* param=NULL;
498 
499  /*first, figure out if the param has already been created: */
500  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
501 
502  if(param) param->SetValue(IssmDoublearray,M); //already exists, just set it.
503  else this->AddObject(new DoubleVecParam(enum_type,IssmDoublearray,M)); //just add the new parameter.
504 }

◆ SetParam() [7/13]

void Parameters::SetParam ( IssmDouble IssmDoublearray,
int  M,
int  N,
int  enum_type 
)

Definition at line 506 of file Parameters.cpp.

506  {/*{{{*/
507 
508  Param* param=NULL;
509 
510  /*first, figure out if the param has already been created: */
511  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
512 
513  if(param) param->SetValue(IssmDoublearray,M,N); //already exists, just set it.
514  else this->AddObject(new DoubleMatParam(enum_type,IssmDoublearray,M,N)); //just add the new parameter.
515 }

◆ SetParam() [8/13]

void Parameters::SetParam ( int *  intarray,
int  M,
int  enum_type 
)

Definition at line 517 of file Parameters.cpp.

517  {/*{{{*/
518 
519  Param* param=NULL;
520 
521  /*first, figure out if the param has already been created: */
522  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
523 
524  if(param) param->SetValue(intarray,M); //already exists, just set it.
525  else this->AddObject(new IntVecParam(enum_type,intarray,M)); //just add the new parameter.
526 }

◆ SetParam() [9/13]

void Parameters::SetParam ( int *  intarray,
int  M,
int  N,
int  enum_type 
)

Definition at line 528 of file Parameters.cpp.

528  {/*{{{*/
529 
530  Param* param=NULL;
531 
532  /*first, figure out if the param has already been created: */
533  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
534 
535  if(param) param->SetValue(intarray,M,N); //already exists, just set it.
536  else this->AddObject(new IntMatParam(enum_type,intarray,M,N)); //just add the new parameter.
537 }

◆ SetParam() [10/13]

void Parameters::SetParam ( Vector< IssmDouble > *  vec,
int  enum_type 
)

Definition at line 539 of file Parameters.cpp.

539  {/*{{{*/
540 
541  Param* param=NULL;
542 
543  /*first, figure out if the param has already been created: */
544  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
545 
546  if(param) param->SetValue(vector); //already exists, just set it.
547  else this->AddObject(new VectorParam(enum_type,vector)); //just add the new parameter.
548 }

◆ SetParam() [11/13]

void Parameters::SetParam ( Matrix< IssmDouble > *  mat,
int  enum_type 
)

Definition at line 550 of file Parameters.cpp.

550  {/*{{{*/
551 
552  Param* param=NULL;
553 
554  /*first, figure out if the param has already been created: */
555  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
556 
557  if(param) param->SetValue(matrix); //already exists, just set it.
558  else this->AddObject(new MatrixParam(enum_type,matrix)); //just add the new parameter.
559 }

◆ SetParam() [12/13]

void Parameters::SetParam ( FILE *  fid,
int  enum_type 
)

Definition at line 561 of file Parameters.cpp.

561  {/*{{{*/
562 
563  Param* param=NULL;
564 
565  /*first, figure out if the param has already been created: */
566  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
567 
568  if(param) param->SetValue(fid); //already exists, just set it.
569  else this->AddObject(new FileParam(enum_type,fid)); //just add the new parameter.
570 }

◆ SetParam() [13/13]

void Parameters::SetParam ( DataSet dataset,
int  enum_type 
)

Definition at line 572 of file Parameters.cpp.

572  {/*{{{*/
573 
574  Param* param=NULL;
575 
576  /*first, figure out if the param has already been created: */
577  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
578 
579  if(param){
580  param->SetValue(dataset); //already exists, just set it.
581  }
582  else{
583  this->AddObject(new DataSetParam(enum_type,dataset)); //just add the new parameter.
584  }
585 }

◆ FindParamObject()

Param * Parameters::FindParamObject ( int  enum_type)

Definition at line 588 of file Parameters.cpp.

588  {/*{{{*/
589 
590  return this->params[EnumToIndex(param_enum)];
591 }

Field Documentation

◆ params

Param* Parameters::params[NUMPARAMS]
private

Definition at line 21 of file Parameters.h.


The documentation for this class was generated from the following files:
VectorParam
Definition: VectorParam.h:20
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
Param
Definition: Param.h:21
StringParamEnum
@ StringParamEnum
Definition: EnumDefinitions.h:1292
BoolParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: BoolParam.cpp:50
Parameters
Declaration of Parameters class.
Definition: Parameters.h:18
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
NUMPARAMS
#define NUMPARAMS
Definition: Parameters.h:12
DataSet::objects
std::vector< Object * > objects
Definition: DataSet.h:19
Param::ObjectEnum
virtual int ObjectEnum()=0
MARSHALLING_SIZE
@ MARSHALLING_SIZE
Definition: Marshalling.h:11
ParametersEnum
@ ParametersEnum
Definition: EnumDefinitions.h:1212
IntVecParamEnum
@ IntVecParamEnum
Definition: EnumDefinitions.h:1129
IntVecParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntVecParam.cpp:72
TransientArrayParam
Definition: TransientArrayParam.h:20
Param::copy
virtual Param * copy()=0
TransientParamEnum
@ TransientParamEnum
Definition: EnumDefinitions.h:1316
IntVecParam
Definition: IntVecParam.h:20
Parameters::AddObject
void AddObject(Param *newparam)
Definition: Parameters.cpp:67
TransientArrayParamEnum
@ TransientArrayParamEnum
Definition: EnumDefinitions.h:1313
IntParamEnum
@ IntParamEnum
Definition: EnumDefinitions.h:1128
Param::Echo
virtual void Echo()=0
DoubleParam
Definition: DoubleParam.h:20
IntMatParam
Definition: IntMatParam.h:20
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
StringParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: StringParam.cpp:52
ParametersENDEnum
@ ParametersENDEnum
Definition: EnumDefinitions.h:461
Parameters::Parameters
Parameters()
Definition: Parameters.cpp:45
Param::Marshall
virtual void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)=0
StringArrayParam
Definition: StringArrayParam.h:20
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
Parameters::EnumToIndex
int EnumToIndex(int enum_in)
Definition: Parameters.cpp:57
IntParam
Definition: IntParam.h:20
FileParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: FileParam.cpp:51
DoubleVecParamEnum
@ DoubleVecParamEnum
Definition: EnumDefinitions.h:1048
DoubleParamEnum
@ DoubleParamEnum
Definition: EnumDefinitions.h:1047
BoolParamEnum
@ BoolParamEnum
Definition: EnumDefinitions.h:998
Parameters::params
Param * params[NUMPARAMS]
Definition: Parameters.h:21
Param::DeepEcho
virtual void DeepEcho()=0
DataSetParam::value
DataSet * value
Definition: DataSetParam.h:26
FileParam
Definition: FileParam.h:20
IntMatParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntMatParam.cpp:69
DataSetParam
Definition: DataSetParam.h:20
DoubleMatArrayParamEnum
@ DoubleMatArrayParamEnum
Definition: EnumDefinitions.h:1044
IntMatParamEnum
@ IntMatParamEnum
Definition: EnumDefinitions.h:1127
FileParamEnum
@ FileParamEnum
Definition: EnumDefinitions.h:1065
StringArrayParamEnum
@ StringArrayParamEnum
Definition: EnumDefinitions.h:1290
DataSetParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DataSetParam.cpp:54
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
MatrixParam
Definition: MatrixParam.h:20
GenericParamEnum
@ GenericParamEnum
Definition: EnumDefinitions.h:1083
DoubleVecParam
Definition: DoubleVecParam.h:20
TransientArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TransientArrayParam.cpp:75
DoubleMatParamEnum
@ DoubleMatParamEnum
Definition: EnumDefinitions.h:1046
StringParam
Definition: StringParam.h:20
DataSetParamEnum
@ DataSetParamEnum
Definition: EnumDefinitions.h:1029
MARSHALLING_FORWARD
@ MARSHALLING_FORWARD
Definition: Marshalling.h:9
TransientParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TransientParam.cpp:70
DoubleParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleParam.cpp:48
DoubleMatParam
Definition: DoubleMatParam.h:20
BoolParam
Definition: BoolParam.h:20
StringArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: StringArrayParam.cpp:75
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38
Parameters::FindParamObject
Param * FindParamObject(int enum_type)
Definition: Parameters.cpp:588
Param::SetValue
virtual void SetValue(bool boolean)=0
IntParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntParam.cpp:51
TransientParam
Definition: TransientParam.h:20
Param::InstanceEnum
virtual int InstanceEnum()=0
DoubleMatParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleMatParam.cpp:75
DoubleMatArrayParam
Definition: DoubleMatArrayParam.h:20
DoubleVecParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleVecParam.cpp:61
DoubleMatArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleMatArrayParam.cpp:118
Param::GetParameterValue
virtual void GetParameterValue(bool *pbool)=0
ParametersSTARTEnum
@ ParametersSTARTEnum
Definition: EnumDefinitions.h:10