summaryrefslogtreecommitdiffstats
path: root/tksao/util/smooth.h
blob: fccf2523867a9b3781c031608a3d95311fe2f1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 1999-2016
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"

#ifndef __smooth_h__
#define __smooth_h__

void boxcar(double* kernel, int r);
void tophat(double* kernel, int r);
void gaussian(double* kernel, int r);

#endif