<HTML>
<PRE>package ptolemy.domains.pn.panda.faddeev;


import java.util.*;
import ptolemy.data.*;
import ptolemy.actor.*;
import ptolemy.kernel.util.*;
import ptolemy.data.expr.Parameter;
import ptolemy.data.type.BaseType;
import ptolemy.domains.pn.panda.functions.*;

/**
This class describes a kahn process that is part of a process network. 
This process is automatically generated on 2000.08.18 at 03:19:59 PM PDT by the Panda tool.
See http://www.gigascale.org/compaan for more information about panda.

@author panda
*/
public class ND_9 extends TypedAtomicActor {

  /** Parameters and Ports. */
  public TypedIOPort IP_23;
  public TypedIOPort IP_24;
  public TypedIOPort IP_25;
  public TypedIOPort IP_26;



  // -- Public interface of the Actor
  public Parameter parameter_N;

  // -- Get private copies of  the parameters
  private int N;

  // Input Arguments 
  private Double in_0;

  // Output Arguments 

  private int _fire = 0;
  private boolean _returnValue = true;

  /** actor constructor. */
  public ND_9(TypedCompositeActor aContainer, String aName) 
    throws IllegalActionException, NameDuplicationException { 

    super(aContainer, aName);

    IP_23 = new TypedIOPort(this, "IP_23" ,true,false); 
    IP_24 = new TypedIOPort(this, "IP_24" ,true,false); 
    IP_25 = new TypedIOPort(this, "IP_25" ,true,false); 
    IP_26 = new TypedIOPort(this, "IP_26" ,true,false); 

    IP_23.setTypeEquals(BaseType.DOUBLE);
    IP_24.setTypeEquals(BaseType.DOUBLE);
    IP_25.setTypeEquals(BaseType.DOUBLE);
    IP_26.setTypeEquals(BaseType.DOUBLE);


    // The Type of these Parameters is set by the First
    // Token placed in the parameters when created.
    parameter_N = new Parameter(this, "N" );
  } 

  /** initialize the actor. */
  public void initialize() throws IllegalActionException { 
    super.initialize();
    N = ((IntToken) parameter_N.getToken()).intValue();
    _returnValue = true;
  } 


  /** fire the actor. */
  public void fire() throws IllegalActionException {

  }


  /** post fire the actor. */
  public boolean postfire() throws IllegalActionException {
    return false;
  } 

}</pre>
</html>


