Changeset 21513
- Timestamp:
- 02/03/17 15:24:11 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Element.cpp
r21390 r21513 1041 1041 if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element"); 1042 1042 input->GetInputValue(pvalue,gauss); 1043 1044 }/*}}}*/ 1045 void Element::GetInputsInterpolations(Vector<IssmDouble>* interpolations){/*{{{*/ 1046 1047 int interpolation; 1048 1049 /*Go through all inputs and assign interpolation in vector*/ 1050 _assert_(this->inputs); 1051 for(int i=0;i<this->inputs->Size();i++){ 1052 Input* input=xDynamicCast<Input*>(this->inputs->GetObjectByOffset(i)); 1053 switch(input->ObjectEnum()){ 1054 case BoolInputEnum: 1055 case DoubleInputEnum: 1056 case IntInputEnum: 1057 interpolations->SetValue(input->InstanceEnum(),reCast<IssmDouble>(input->ObjectEnum()),INS_VAL); 1058 break; 1059 case TriaInputEnum: 1060 interpolation = input->GetResultInterpolation(); 1061 interpolations->SetValue(input->InstanceEnum(),interpolation,INS_VAL); 1062 break; 1063 default: 1064 _error_("Input "<<EnumToStringx(input->ObjectEnum())<<" not supported yet"); 1065 } 1066 } 1043 1067 1044 1068 }/*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.