private int bins = DEFAULT_BINS;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
Flag STYLE_CURVES_FLAG = new Flag(STYLE_CURVES_ID);
if(config.grab(STYLE_CURVES_FLAG)) {
curves = STYLE_CURVES_FLAG.getValue();
}
IntParameter HISTOGRAM_BINS_PARAM = new IntParameter(HISTOGRAM_BINS_ID, new GreaterEqualConstraint(2), DEFAULT_BINS);
if(config.grab(HISTOGRAM_BINS_PARAM)) {
bins = HISTOGRAM_BINS_PARAM.getValue();
}