Changeset 26874


Ignore:
Timestamp:
02/10/22 09:22:54 (3 years ago)
Author:
Mathieu Morlighem
Message:

CHG: adding issmenums.jl for dJUICE

Location:
issm/trunk-jpl/src/c/shared/Enum
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Enum/Enum.vim

    r26859 r26874  
    16231623syn keyword cType Cfsurfacesquare
    16241624syn keyword cType Channel
    1625 syn keyword cType classes
    16261625syn keyword cType Constraint
    16271626syn keyword cType Constraints
     
    16301629syn keyword cType ControlInput
    16311630syn keyword cType Covertree
     1631syn keyword cType DataSetParam
    16321632syn keyword cType DatasetInput
    1633 syn keyword cType DataSetParam
    16341633syn keyword cType Definition
    16351634syn keyword cType DependentObject
     
    16441643syn keyword cType ElementInput
    16451644syn keyword cType ElementMatrix
     1645syn keyword cType ElementVector
    16461646syn keyword cType Elements
    1647 syn keyword cType ElementVector
    16481647syn keyword cType ExponentialVariogram
    16491648syn keyword cType ExternalResult
     
    16521651syn keyword cType Friction
    16531652syn keyword cType Gauss
    1654 syn keyword cType GaussianVariogram
    1655 syn keyword cType gaussobjects
    16561653syn keyword cType GaussPenta
    16571654syn keyword cType GaussSeg
    16581655syn keyword cType GaussTetra
    16591656syn keyword cType GaussTria
     1657syn keyword cType GaussianVariogram
    16601658syn keyword cType GenericExternalResult
    16611659syn keyword cType GenericOption
     
    16731671syn keyword cType IssmDirectApplicInterface
    16741672syn keyword cType IssmParallelDirectApplicInterface
    1675 syn keyword cType krigingobjects
    16761673syn keyword cType Load
    16771674syn keyword cType Loads
     
    16841681syn keyword cType Matice
    16851682syn keyword cType Matlitho
    1686 syn keyword cType matrixobjects
    16871683syn keyword cType MatrixParam
    16881684syn keyword cType Misfit
     
    16971693syn keyword cType Observations
    16981694syn keyword cType Option
     1695syn keyword cType OptionUtilities
    16991696syn keyword cType Options
    1700 syn keyword cType OptionUtilities
    17011697syn keyword cType Param
    17021698syn keyword cType Parameters
     
    17121708syn keyword cType Regionaloutput
    17131709syn keyword cType Results
     1710syn keyword cType RiftStruct
    17141711syn keyword cType Riftfront
    1715 syn keyword cType RiftStruct
    17161712syn keyword cType SealevelGeometry
    17171713syn keyword cType Seg
    17181714syn keyword cType SegInput
     1715syn keyword cType SegRef
    17191716syn keyword cType Segment
    1720 syn keyword cType SegRef
    17211717syn keyword cType SpcDynamic
    17221718syn keyword cType SpcStatic
     
    17371733syn keyword cType Vertex
    17381734syn keyword cType Vertices
     1735syn keyword cType classes
     1736syn keyword cType gaussobjects
     1737syn keyword cType krigingobjects
     1738syn keyword cType matrixobjects
    17391739syn keyword cType AdjointBalancethickness2Analysis
    17401740syn keyword cType AdjointBalancethicknessAnalysis
  • issm/trunk-jpl/src/c/shared/Enum/Synchronize.sh

    r26606 r26874  
    193193END
    194194#}}}
     195#Build issmenum.jl {{{
     196#Header
     197cat <<END >  $ISSM_DIR/src/c/shared/Enum/issmenums.jl
     198#   WARNING: DO NOT MODIFY THIS FILE
     199#            this file has been automatically generated by Synchronize.sh
     200#            Please read README for more information
     201
     202@enum IssmEnum begin
     203END
     204cat temp |  awk '{print "\t" $1}' >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl
     205#Move on to EnumToString
     206cat <<END >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl
     207end
     208
     209function EnumToString(enum::IssmEnum)
     210END
     211cat temp |  awk '{print "\tif(enum==" $1 ") return \"" substr($1,1,length($1)-4) "\" end"}' >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl
     212#Move on to StringToEnumx
     213cat <<END >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl
     214end
     215END
     216#}}}
    195217
    196218#vim file
Note: See TracChangeset for help on using the changeset viewer.