model.MARK_II.unimplementedBiology.Thalamus 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;
/**
* "Relay station" for all sensory information(except smell) which
* is conveyed to the cortex.
*
* @author Quinn Liu ([email protected])
* @version June 5, 2013
*/
public class Thalamus {
private model.MARK_II.unimplementedBiology.LGN LGN;
public Thalamus(LGN LGN) {
this.LGN = LGN;
}
public LGN getLGN() {
return this.LGN;
}
}