001    package cnslab.cnsnetwork;
002
003    /***********************************************************************
004    * Parameter for BKPoissonNeuron.
005    * 
006    * @version
007    *   $Date: 2012-08-04 13:43:22 -0500 (Sat, 04 Aug 2012) $
008    *   $Rev: 104 $
009    *   $Author: croft $
010    * @author
011    *   Yi Dong
012    * @author
013    *   David Wallace Croft
014    ***********************************************************************/
015    public final class  BKPoissonNeuronPara
016      implements Para
017    ////////////////////////////////////////////////////////////////////////
018    ////////////////////////////////////////////////////////////////////////
019    {
020    
021    /** Highest frequency */
022    public double  HighFre = 50;
023    
024    /** Saturation freq */
025    public double  LowFre = 30;
026    
027    /** inverse of decay time */
028    public double  timeCon = 0;
029
030    ////////////////////////////////////////////////////////////////////////
031    ////////////////////////////////////////////////////////////////////////
032    
033    @Override
034    public String  getModel ( )
035    ////////////////////////////////////////////////////////////////////////
036    {
037      return "BKPoissonNeuron";
038    }
039    
040    ////////////////////////////////////////////////////////////////////////
041    ////////////////////////////////////////////////////////////////////////
042    }