Ignore:
Timestamp:
06/21/12 10:14:12 (13 years ago)
Author:
Mathieu Morlighem
Message:

minor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/objects/Elements/Penta.cpp

    r12494 r12495  
    11331133        /*Make a copy of the original input: */
    11341134        input=(Input*)this->inputs->GetInput(enum_type);
    1135         if(!input)_error2_(" could not find old input with enum: " << EnumToStringx(enum_type));
     1135        if(!input)_error2_("could not find old input with enum: " << EnumToStringx(enum_type));
    11361136
    11371137        /*ArtificialNoise: */
     
    11531153                new_inputs[i]=(Input*)this->inputs->GetInput(enums[2*i+0]);
    11541154                old_inputs[i]=(Input*)this->inputs->GetInput(enums[2*i+1]);
    1155                 if(!new_inputs[i])_error2_(" could not find input with enum " << EnumToStringx(enums[2*i+0]));
    1156                 if(!old_inputs[i])_error2_(" could not find input with enum " << EnumToStringx(enums[2*i+0]));
     1155                if(!new_inputs[i])_error2_("could not find input with enum " << EnumToStringx(enums[2*i+0]));
     1156                if(!old_inputs[i])_error2_("could not find input with enum " << EnumToStringx(enums[2*i+0]));
    11571157        }
    11581158
     
    11861186                this->inputs->AddInput(new DoubleInput(name,(IssmDouble)scalar));
    11871187        }
    1188         else _error2_(" could not recognize nature of vector from code " << code);
     1188        else _error2_("could not recognize nature of vector from code " << code);
    11891189
    11901190}
     
    12681268                                this->inputs->AddInput(new DoubleInput(vector_enum,(IssmDouble)vector[index]));
    12691269                        }
    1270                         else _error2_(" could not recognize nature of vector from code " << code);
     1270                        else _error2_("could not recognize nature of vector from code " << code);
    12711271                }
    12721272                else {
     
    14641464        /*Make a copy of the original input: */
    14651465        input=(Input*)this->inputs->GetInput(enum_type);
    1466         if(!input)_error2_(" could not find old input with enum: " << EnumToStringx(enum_type));
     1466        if(!input)_error2_("could not find old input with enum: " << EnumToStringx(enum_type));
    14671467
    14681468        /*Scale: */
     
    18941894/*FUNCTION Penta::InputUpdateFromVector(int* vector, int name, int type);{{{*/
    18951895void  Penta::InputUpdateFromVector(int* vector, int name, int type){
    1896         _error2_(" not supported yet!");
     1896        _error2_("not supported yet!");
    18971897}
    18981898/*}}}*/
    18991899/*FUNCTION Penta::InputUpdateFromVector(bool* vector, int name, int type);{{{*/
    19001900void  Penta::InputUpdateFromVector(bool* vector, int name, int type){
    1901         _error2_(" not supported yet!");
     1901        _error2_("not supported yet!");
    19021902}
    19031903/*}}}*/
     
    56225622/*FUNCTION Penta::InputUpdateFromVectorDakota(int* vector, int name, int type);{{{*/
    56235623void  Penta::InputUpdateFromVectorDakota(int* vector, int name, int type){
    5624         _error2_(" not supported yet!");
     5624        _error2_("not supported yet!");
    56255625}
    56265626/*}}}*/
    56275627/*FUNCTION Penta::InputUpdateFromVectorDakota(bool* vector, int name, int type);{{{*/
    56285628void  Penta::InputUpdateFromVectorDakota(bool* vector, int name, int type){
    5629         _error2_(" not supported yet!");
     5629        _error2_("not supported yet!");
    56305630}
    56315631/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.