model.MARK_II.unimplementedBiology.PNS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WalnutiQ Show documentation
Show all versions of WalnutiQ Show documentation
A Java based Neuron Modeling framework
The newest version!
package model.MARK_II.unimplementedBiology;
import model.MARK_II.sensory.Retina;
/**
* @author Quinn Liu ([email protected])
* @version June 5, 2013
*/
public class PNS {
private SNS SNS;
/*
* Works below the level of consciousness controlling
* heart rate, digestion, respiratory rate, ...
*/
// private AutonomicNervousSystem ANS;
public PNS(Retina retine) {
this.SNS = new SNS(retine);
// this.ANS = null;
}
public SNS getSNS() {
return this.SNS;
}
}