1*e38fe63cSAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*e38fe63cSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*e38fe63cSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*e38fe63cSAndrew Rist * distributed with this work for additional information 6*e38fe63cSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*e38fe63cSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*e38fe63cSAndrew Rist * "License"); you may not use this file except in compliance 9*e38fe63cSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*e38fe63cSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*e38fe63cSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*e38fe63cSAndrew Rist * software distributed under the License is distributed on an 15*e38fe63cSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*e38fe63cSAndrew Rist * KIND, either express or implied. See the License for the 17*e38fe63cSAndrew Rist * specific language governing permissions and limitations 18*e38fe63cSAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*e38fe63cSAndrew Rist *************************************************************/ 21*e38fe63cSAndrew Rist 22*e38fe63cSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#define FL_ERROR 1 25cdf0e10cSrcweir#define FL_INDICATE 2 26cdf0e10cSrcweir#define FL_PARAMETERS 3 27cdf0e10cSrcweir 28cdf0e10cSrcweir#define FT_POSITIVE 1 29cdf0e10cSrcweir#define FT_NEGATIVE 2 30cdf0e10cSrcweir 31cdf0e10cSrcweir#define RB_NONE 1 32cdf0e10cSrcweir#define RB_CONST 2 33cdf0e10cSrcweir#define RB_PERCENT 3 34cdf0e10cSrcweir#define RB_FUNCTION 4 35cdf0e10cSrcweir#define RB_BOTH 5 36cdf0e10cSrcweir#define RB_POSITIVE 6 37cdf0e10cSrcweir#define RB_NEGATIVE 7 38cdf0e10cSrcweir#define RB_RANGE 8 39cdf0e10cSrcweir 40cdf0e10cSrcweir#define ED_RANGE_POSITIVE 1 41cdf0e10cSrcweir#define ED_RANGE_NEGATIVE 2 42cdf0e10cSrcweir 43cdf0e10cSrcweir#define FI_BOTH 1 44cdf0e10cSrcweir#define FI_POSITIVE 2 45cdf0e10cSrcweir#define FI_NEGATIVE 3 46cdf0e10cSrcweir#define IB_RANGE_POSITIVE 4 47cdf0e10cSrcweir#define IB_RANGE_NEGATIVE 5 48cdf0e10cSrcweir 49cdf0e10cSrcweir#define LB_FUNCTION 1 50cdf0e10cSrcweir 51cdf0e10cSrcweir#define MF_POSITIVE 1 52cdf0e10cSrcweir#define MF_NEGATIVE 2 53cdf0e10cSrcweir 54cdf0e10cSrcweir#define CB_SYN_POS_NEG 1 55cdf0e10cSrcweir 56cdf0e10cSrcweir#define CHART_LB_FUNCTION_STD_ERROR 0 57cdf0e10cSrcweir#define CHART_LB_FUNCTION_STD_DEV 1 58cdf0e10cSrcweir#define CHART_LB_FUNCTION_VARIANCE 2 59cdf0e10cSrcweir#define CHART_LB_FUNCTION_ERROR_MARGIN 3 60