Changeset 26323
- Timestamp:
- 06/15/21 08:25:32 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Inputs/TransientInput.cpp
r26226 r26323 94 94 void TransientInput::DeepEcho(void){/*{{{*/ 95 95 96 int i;97 98 96 _printf_("TransientInput:\n"); 99 97 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n"); 100 98 _printf_(" numtimesteps: " << this->numtimesteps << "\n"); 101 99 _printf_("---inputs: \n"); 102 for(i=0;i<this->numtimesteps;i++){ 100 for(int i=0;i<this->numtimesteps;i++){ 101 _printf_(" time: " << this->timesteps[i]<<" "); 102 if(this->inputs[i]) this->inputs[i]->DeepEcho(); 103 else _printf_(" NOT SET! \n"); 104 } 105 } 106 /*}}}*/ 107 void TransientInput::Configure(Parameters* params){/*{{{*/ 108 this->parameters=params; 109 } 110 /*}}}*/ 111 void TransientInput::Echo(void){/*{{{*/ 112 _printf_("TransientInput:\n"); 113 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n"); 114 _printf_(" numtimesteps: " << this->numtimesteps << "\n"); 115 _printf_("---inputs: \n"); 116 for(int i=0;i<this->numtimesteps;i++){ 103 117 _printf_(" time: " << this->timesteps[i]<<" "); 104 118 if(this->inputs[i]) this->inputs[i]->Echo(); 105 119 else _printf_(" NOT SET! \n"); 106 120 } 107 }108 /*}}}*/109 void TransientInput::Configure(Parameters* params){/*{{{*/110 this->parameters=params;111 }112 /*}}}*/113 void TransientInput::Echo(void){/*{{{*/114 this->DeepEcho();115 121 } 116 122 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.