#ifndef IMAGEANALYSIS_IMAGEBOXCARSMOOTHER_H
#define IMAGEANALYSIS_IMAGEBOXCARSMOOTHER_H
#include <imageanalysis/ImageAnalysis/Image1DSmoother.h>
#include <casacore/casa/namespace.h>
template <class T> class ImageBoxcarSmoother : public Image1DSmoother<T> {
const casacore::Record *const region,
const casacore::String& maskInp,
const casacore::String& outname, casacore::Bool overwrite
~ImageBoxcarSmoother() {}
casacore::String getClass() const { const static casacore::String s = "ImageBoxcarSmoother"; return s; }
void setWidth(casacore::uInt w);
const casacore::ImageInterface<T>& image
void _boxcarSmooth(casacore::Array<T>& out, const casacore::Array<T>& in) const ;
#ifndef AIPS_NO_TEMPLATE_SRC
#include <imageanalysis/ImageAnalysis/ImageBoxcarSmoother.tcc>