package model; /** * * @author John H. Krantz, Ph.D. * */ public class ModelConst { // indexes values for models when held in an array public static final int SIMPLE_CELL = 0; public static final int DOG_CELL = 1; public static final String [] CELL_NAMES = { "Simple Cell", "DOG Cell"}; // Needed text names public static final String STEP_NAME = "Step Size"; // parameters for the different models public static final String SIMPLE_PARAM [] = { "Standard Deviation of Center","Phase of Center", "Number of Orientations"}; public static final String DOG_PARAM [] = { "Standard Deviation Excitatory", "Standard Deviation Inhibitory", "Color Opponent Channel"}; public static final int MAX_PARAM = SIMPLE_PARAM.length; // different values to be gotten from the simple cell // data to be used in different analyzes. public static final String [] SIMPLE_VAL_BASIC = { "Mean","Min","Max",}; // index constants to find these values public final static int MEAN = 0; public final static int MIN = 1; public final static int MAX = 2; /** * difference from list to index in the * the actual cortex array */ public final static int ORIENT_DIFF = MAX+1; }