wavecatcher-analysis
Loading...
Searching...
No Matches
FFT_WF.h
Go to the documentation of this file.
1
2#ifndef _FFT_WF
3#define _FFT_WF
4
5#include "ReadRun.h"
6
7class FFT_WF : public ReadRun {
8public:
11 FFT_WF(int no_of_bin_files_to_read) : ReadRun(no_of_bin_files_to_read) {}
12
13 // print FFT
14 void PrintFFTWF(int = 1, float = 0., float = 0., int = 1);
15};
16#endif
Class contains method for ploting the Fourier transforms of waveforms. For analysis of noise/signal f...
Definition FFT_WF.h:7
FFT_WF(int no_of_bin_files_to_read)
Initializer will call initializer of ReadRun class.
Definition FFT_WF.h:11
void PrintFFTWF(int=1, float=0., float=0., int=1)
Print Fourier transform of waveforms.
Definition FFT_WF.cc:11