Class jeinKernel

java.lang.Object
  extended byjeinKernel

public abstract class jeinKernel
extends java.lang.Object


Field Summary
protected  double inputsig
          The current input signal (from inputFile).
protected  double left
          The current left channel of the stereo output signal.
protected  double left_inputsig
          The current left input signal (from inputFile)
protected  int nsamps
          The number of total samples for the output file.
protected  double right
          The current right channel of the stereo output signal.
protected  double right_inputsig
          The current right input signal (from inputFile)
protected  double sr
          The sampling rate of the output sound file.
protected  int t
          The current time in samples.
protected  double two_PI
          A convient (double) representation of 2PI.
protected  double y
          The current mono output signal.
 
Method Summary
 void tap(Delay delay, int length)
          This method creates a delay line.

Field Detail

t

protected int t
The current time in samples.


nsamps

protected int nsamps
The number of total samples for the output file.


y

protected double y
The current mono output signal.


left

protected double left
The current left channel of the stereo output signal.


right

protected double right
The current right channel of the stereo output signal.


sr

protected double sr
The sampling rate of the output sound file.


two_PI

protected double two_PI
A convient (double) representation of 2PI.


inputsig

protected double inputsig
The current input signal (from inputFile).


left_inputsig

protected double left_inputsig
The current left input signal (from inputFile)


right_inputsig

protected double right_inputsig
The current right input signal (from inputFile)

Method Detail

tap

public final void tap(Delay delay,
                      int length)
This method creates a delay line. If this method is called before accessing delay in an implementation of the script method, then delay is a FEEDFORWARD delay. Otherwise, if delay is accessed before calling this method, then delay is a FEEDBACK delay.