model.MARK_II.unimplementedBiology.LGN 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.region.Region;
/**
* Input into LGN: activity of Cells within OldRetina.
*
* Output of LGN: activity of Neurons from this Region.
*
* @author Quinn Liu ([email protected])
* @version June 5, 2013
*/
public class LGN {
private Region region;
public LGN(Region region) {
// how should desiredLocalActivity be calculated
this.region = region;
}
public Region getRegion() {
return this.region;
}
}