Commit b8df7106 authored by DeAn Wei's avatar DeAn Wei
Browse files

add file Custom.cpp

parent ef182913
Loading
Loading
Loading
Loading

src/Custom.cpp

0 → 100644
+35 −0
Original line number Diff line number Diff line
#include "Home.h"
#include "Util.h"
#include "ProDataIO.h"

void SpecifyEquations1(Table_t &table)
{
        int     i, j;
 
        int colBurgID =  GetColIDFromTable(table, "burgID");
        int colIndex =  GetColIDFromTable(table, "index");
 
        for(i=0; i<table.data.size(); i++){
            real8 &burgID = table.data[i][colBurgID];
            real8 &index = table.data[i][colIndex];
 
            if(burgID > 6.5){
                if(burgID == 7 || burgID == 12 || burgID == 17){
                    burgID = -1;
                }else{
                    burgID = 7;
                }
            }
        }
        return;
}


void SpecifyEquations(Table_t &table)
{
        int     i, j;

        SpecifyEquations1(table);
    
        return;
}