Changeset 5655


Ignore:
Timestamp:
09/02/10 09:55:49 (15 years ago)
Author:
Mathieu Morlighem
Message:

Fixed rift control methods

Location:
issm/trunk/src/c/objects/Loads
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Loads/Riftfront.cpp

    r5610 r5655  
    341341}
    342342/*}}}*/
     343/*FUNCTION Riftfront::InputUpdateFromConstant(double constant,int name) {{{1*/
     344void    Riftfront::InputUpdateFromVector(double* vector, int name, int type){
     345
     346        /*Check that name is a Riftfront input*/
     347        if (!IsInput(name)) return;
     348
     349        /*update input*/
     350        ISSMERROR("not implemented yet");
     351        //this->inputs->AddInput(new DoubleInput(name,constant));
     352
     353}
     354/*}}}*/
     355
    343356
    344357/*Load virtual functions definitions:*/
  • issm/trunk/src/c/objects/Loads/Riftfront.h

    r5610 r5655  
    6060                /*}}}*/
    6161                /*Update virtual functions resolution: {{{1*/
    62                 void    InputUpdateFromVector(double* vector, int name, int type){ISSMERROR("Not implemented yet!");}
     62                void    InputUpdateFromVector(double* vector, int name, int type);
    6363                void    InputUpdateFromVector(int* vector, int name, int type){ISSMERROR("Not implemented yet!");}
    6464                void    InputUpdateFromVector(bool* vector, int name, int type){ISSMERROR("Not implemented yet!");}
Note: See TracChangeset for help on using the changeset viewer.