19 params.addClassDescription(
"Circle with a smooth interface");
20 params.addRequiredParam<Real>(
"x1",
"The x coordinate of the circle center");
21 params.addRequiredParam<Real>(
"y1",
"The y coordinate of the circle center");
22 params.addParam<Real>(
"z1", 0.0,
"The z coordinate of the circle center");
23 params.addRequiredParam<Real>(
"radius",
"The radius of a circle");
29 _x1(parameters.get<Real>(
"x1")),
30 _y1(parameters.get<Real>(
"y1")),
31 _z1(parameters.get<Real>(
"z1")),
32 _radius(parameters.get<Real>(
"radius")),
33 _center(_x1, _y1, _z1)