* @param wavelength The wavelength to add.
* @return A reference to this <code>Builder</code>.
*/
public Builder addWavelength(double wavelength) {
String name = String.format("%d nm", (int) Math.round(wavelength / 1e-9));
return addChannel(name, new DiracProbabilityDensityFunction(wavelength));
}