/* * Copyright (c) 2012 Diamond Light Source Ltd. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package uk.ac.diamond.scisoft.analysis.processing.operations.oned; import org.eclipse.dawnsci.analysis.api.processing.model.AbstractOperationModel; import org.eclipse.dawnsci.analysis.api.processing.model.OperationModelField; public class RollingBallBaselineModel extends AbstractOperationModel { @OperationModelField(min=1, hint="Radius should be smaller than size of features",label = "Set ball radius in pixels" ) private int ballRadius = 100; public int getBallRadius() { return ballRadius; } public void setBallRadius(int ballRadius) { firePropertyChange("ballRadius", this.ballRadius, this.ballRadius = ballRadius); } }