Ignore:
Timestamp:
08/11/20 19:43:31 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: moving inputs2 back to inputs

Location:
issm/trunk-jpl/src/c/classes/Inputs
Files:
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Inputs/PentaInput.h

    r25378 r25379  
    33
    44/*Headers:*/
    5 #include "./ElementInput2.h"
     5#include "./ElementInput.h"
    66#include "../Elements/PentaRef.h"
    77
    8 class PentaInput2: public ElementInput2, public PentaRef{
     8class PentaInput: public ElementInput, public PentaRef{
    99
    1010        private:
    1111                int isserved_collapsed;
    1212        public:
    13                 /*PentaInput2 constructors, destructors: {{{*/
    14                 PentaInput2();
    15                 PentaInput2(int nbe_in,int nbv_in,int interp_in);
    16                 ~PentaInput2();
     13                /*PentaInput constructors, destructors: {{{*/
     14                PentaInput();
     15                PentaInput(int nbe_in,int nbv_in,int interp_in);
     16                ~PentaInput();
    1717                /*}}}*/
    1818                /*Object virtual functions definitions:{{{ */
    19                 Input2 *copy();
     19                Input *copy();
    2020                void    DeepEcho();
    2121                void    Echo();
     
    2424                int     ObjectEnum();
    2525                /*}}}*/
    26                 /*PentaInput2 management: {{{*/
     26                /*PentaInput management: {{{*/
    2727                void SetInput(int interp_in,int row,IssmDouble value_in);
    2828                void SetInput(int interp_in,int numinds,int* rows,IssmDouble* values_in);
     
    3434                IssmDouble GetInputMax();
    3535                IssmDouble GetInputMaxAbs();
    36                 PentaInput2* GetPentaInput(){return this;};
     36                PentaInput* GetPentaInput(){return this;};
    3737                void GetInputValue(IssmDouble* pvalue,Gauss* gauss);
    3838                void Scale(IssmDouble scalar);
    3939                void Pow(IssmDouble scalar);
    40                 void AXPY(Input2* xinput,IssmDouble scalar);
    41                 void PointWiseMult(Input2* xinput);
     40                void AXPY(Input* xinput,IssmDouble scalar);
     41                void PointWiseMult(Input* xinput);
    4242                void Serve(int numindices,int* indices);
    4343                void Serve(int row,int numindices);
Note: See TracChangeset for help on using the changeset viewer.