Changeset 26323


Ignore:
Timestamp:
06/15/21 08:25:32 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: better echo function for transient inputs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Inputs/TransientInput.cpp

    r26226 r26323  
    9494void TransientInput::DeepEcho(void){/*{{{*/
    9595
    96         int i;
    97 
    9896        _printf_("TransientInput:\n");
    9997        _printf_("   enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
    10098        _printf_("   numtimesteps: " << this->numtimesteps << "\n");
    10199        _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/*}}}*/
     107void TransientInput::Configure(Parameters* params){/*{{{*/
     108        this->parameters=params;
     109}
     110/*}}}*/
     111void 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++){
    103117                _printf_("   time: " << this->timesteps[i]<<"  ");
    104118                if(this->inputs[i]) this->inputs[i]->Echo();
    105119                else                _printf_(" NOT SET! \n");
    106120        }
    107 }
    108 /*}}}*/
    109 void TransientInput::Configure(Parameters* params){/*{{{*/
    110         this->parameters=params;
    111 }
    112 /*}}}*/
    113 void TransientInput::Echo(void){/*{{{*/
    114         this->DeepEcho();
    115121}
    116122/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.