Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

ModuleSignoffData.java

00001 package ProdDatabase;
00002 
00003 public interface ModuleSignoffData  {
00004 
00005    public static final String[] keywords = {
00006 "%SERIAL NUMBER",
00007 "%CATEGORY",
00008 "%COMMENT",
00009 "%BARREL",
00010 "%B56_REASON",
00011 "%FAIL_REASON",
00012 "%IV_CATEGORY",
00013 "%IV_COMMENT",
00014 "%ELECTRICAL_CATEGORY",
00015 "%ELECTRICAL_COMMENT",
00016 "%SCURVE_CATEGORY",
00017 "%SCURVE_COMMENT",
00018 "%ELECTRICAL_SPECIAL_SETTINGS"
00019 };
00020 
00021    public static final String[] descriptions = {
00022 "Serial number",
00023 "Overall category",
00024 "Overall comment",
00025 "Barrel type categorisation",
00026 "Reason for B56 assignment",
00027 "Reason for FAIL category",
00028 "IV categorisation",
00029 "Comment on IV performance",
00030 "Electrical categorisation",
00031 "Comment on electrical performance",
00032 "S-curves categorisation",
00033 "Comment on S-curves",
00034 "Electrical Special Setting"
00035 };
00036 
00037    public static final int SERIALNO = 0;
00038    public static final int CATEGORY = 1;
00039    public static final int COMMENT  = 2;
00040    public static final int BARREL   = 3;
00041    public static final int B56REASON = 4;
00042    public static final int FAILREASON = 5;
00043    public static final int IVCATEGORY = 6;
00044    public static final int IVCOMMENT = 7;
00045    public static final int ELECTRICALCATEGORY = 8;
00046    public static final int ELECTRICALCOMMENT = 9;
00047    public static final int SCURVECATEGORY = 10;
00048    public static final int SCURVECOMMENT = 11;
00049    public static final int ELEC_SPECIAL_SETTING=12;
00050 
00051    public static final boolean[][] compulsoryFields = {
00052              {true,false,false,false,false,false,true,true,true,true,true,true,true},    // require subset of parameters for institute upload
00053              {true,true,true,true,false,false,true,true,true,true,true,true,true}          // require every parameter present for signoff
00054              };
00055 
00056    public static final int INSTITUTE_UPLOAD=0;
00057    public static final int SIGNOFF_UPLOAD=1;
00058 }

Generated on Thu Jul 15 09:55:45 2004 for SCT DAQ/DCS Software - Java by doxygen 1.3.5