Changeset 13056 for issm/trunk-jpl/src/c/Container/Inputs.cpp
- Timestamp:
- 08/15/12 19:10:41 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/Container/Inputs.cpp
r13055 r13056 57 57 /*we could not find an input with the correct enum type. No defaults values were provided, 58 58 * error out: */ 59 _error 2_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");59 _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")"); 60 60 } 61 61 … … 85 85 /*we could not find an input with the correct enum type. No defaults values were provided, 86 86 * error out: */ 87 _error 2_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");87 _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")"); 88 88 } 89 89 … … 113 113 /*we could not find an input with the correct enum type. No defaults values were provided, 114 114 * error out: */ 115 _error 2_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");115 _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")"); 116 116 } 117 117 … … 141 141 /*we could not find an input with the correct enum type. No defaults values were provided, 142 142 * error out: */ 143 _error 2_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");143 _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")"); 144 144 } 145 145 … … 213 213 214 214 /*some checks: */ 215 if(!constrain_input) _error 2_("input " << EnumToStringx(constrain_enum) << " could not be found!");215 if(!constrain_input) _error_("input " << EnumToStringx(constrain_enum) << " could not be found!"); 216 216 217 217 /*Apply ContrainMin: */ … … 254 254 } 255 255 else{ 256 _error 2_("Input " << EnumToStringx(enumtype) << " not found");256 _error_("Input " << EnumToStringx(enumtype) << " not found"); 257 257 } 258 258 … … 275 275 } 276 276 else{ 277 _error 2_("Input " << EnumToStringx(enumtype) << " not found");277 _error_("Input " << EnumToStringx(enumtype) << " not found"); 278 278 } 279 279 … … 296 296 } 297 297 else{ 298 _error 2_("Input " << EnumToStringx(enumtype) << " not found");298 _error_("Input " << EnumToStringx(enumtype) << " not found"); 299 299 } 300 300 … … 317 317 } 318 318 else{ 319 _error 2_("Input " << EnumToStringx(enumtype) << " not found");319 _error_("Input " << EnumToStringx(enumtype) << " not found"); 320 320 } 321 321 … … 369 369 /*Make a copy of the original input: */ 370 370 original=(Input*)this->GetInput(original_enum); 371 if(!original)_error 2_("could not find input with enum: " << EnumToStringx(original_enum));371 if(!original)_error_("could not find input with enum: " << EnumToStringx(original_enum)); 372 372 copy=(Input*)original->copy(); 373 373 … … 416 416 417 417 /*some checks: */ 418 if(!xinput) _error 2_("input " << EnumToStringx(MeshXEnum) << " could not be found!");419 if(!yinput) _error 2_("input " << EnumToStringx(MeshYEnum) << " could not be found!");418 if(!xinput) _error_("input " << EnumToStringx(MeshXEnum) << " could not be found!"); 419 if(!yinput) _error_("input " << EnumToStringx(MeshYEnum) << " could not be found!"); 420 420 421 421 /*Apply AXPY: */
Note:
See TracChangeset
for help on using the changeset viewer.