/*-------------------------------------------------------
* Package: Wavelet Analysis Tool
* File name: wavelet.cc
*-------------------------------------------------------
*/
//________________________________________________________
// Wavelet class is the astract base class of the Wavelet Analysis Tool (WAT).
#ifndef _STREAM_H
#include <stream.h>
#define _STREAM_H
#endif
#ifndef _STDIO_H
#include <stdio.h>
#define _STDIO_H
#endif
#ifndef _WAVELET_H
#include "wavelet.h"
#endif
#ifdef _USE_ROOT
ClassImp(Wavelet)
#endif
Wavelet::Wavelet()
{
// Default constructor. Does nothing.
};
Wavelet::~Wavelet()
{
// Default destructor. Does nothing.
};
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.