public Termination addTermination(String name, float[] weights, float tauPSC, float delay, boolean modulatory) throws StructuralException {
if (myTerminations.containsKey(name)) {
throw new StructuralException("This SynapticIntegrator already has a Termination named " + name);
}
DelayedLinearExponentialTermination result = new DelayedLinearExponentialTermination(myNode, name,
weights, tauPSC, (int)(delay/myMaxTimeStep));
result.setModulatory(modulatory);
myTerminations.put(name, result);
return result;
}