public ConstArg(
     ISmoothLookerAdaptor adaptor,
     float smoothCoefficient,
     int processOrder
     ) : base(adaptor)
 {
     thisSmoothCoefficient = smoothCoefficient;
     thisProcessOrder      = processOrder;
 }
 public override void SetUp()
 {
     base.SetUp();
     thisSmoothLookerAdaptor = CollectSmoothLookerAdaptor();
     thisSmoothLookerAdaptor.SetUp();
 }