HannWindow.cc
Go to the documentation of this file.
1 #include <utl/HannWindow.h>
2 #include <utl/ErrorLogger.h>
3 
4 using namespace std;
5 using namespace utl;
6 
7 
8 
9 HannWindow::HannWindow(double relativeWidthOnEachSide, long traceLength)
10 : AnalyticWindow(relativeWidthOnEachSide, traceLength),
11  fRise(traceLength * relativeWidthOnEachSide),
12  fFall(traceLength * (1. - relativeWidthOnEachSide)),
13  fWindowSize(2 * long(fRise))
14 {
15 }
16 
18 {
19 }
virtual ~HannWindow()
Definition: HannWindow.cc:17
Abstract base class for analytic windows.

, generated on Tue Sep 26 2023.