001    package edu.nrao.sss.model.resource.evla;
002    
003    /**
004     * <i>This class might be removed.</i>
005     * <p>
006     * <b>Version Info:</b>
007     * <table style="margin-left:2em">
008     *   <tr><td>$Revision: 1993 $</td></tr>
009     *   <tr><td>$Date: 2009-02-20 16:48:14 -0700 (Fri, 20 Feb 2009) $</td></tr>
010     *   <tr><td>$Author: dharland $ (last person to modify)</td></tr>
011     * </table></p>
012     * 
013     * @author David M. Harland
014     * @since 2008-09-03
015     */
016    public class BaselineBoardPair
017      //May want to implement resource.CorrelatorResource
018    {
019      private int quadrantId;  //1,2,3,4
020      private int pairId;      //0-15
021      private int idInPool;    //100 * quadrantId + pairId
022      
023      private WidarCorrelationProductGroup owner;
024      
025      BaselineBoardPair(int quadNum, int pairNum)
026      {
027        //TODO check params?
028        
029        quadrantId = quadNum;
030        pairId     = pairNum;
031        idInPool   = 100 * quadrantId + pairId;
032        
033        owner = null;
034      }
035    }