source: Sophya/trunk/SigPredictor/distribflatfilter.h

Last change on this file was 801, checked in by ansari, 25 years ago

Fichiers au format unix

dominique

File size: 919 bytes
Line 
1 // Dominique YVON, CEA/DAPNIA/SPP 02/2000
2
3
4#ifndef DistribFlatFilter_SEEN
5#define DistribFlatFilter_SEEN
6
7//---------------
8// C++ Headers --
9//---------------
10#include "machdefs.h"
11#include <iostream.h>
12
13//----------------------
14// Base Class Headers --
15//----------------------
16#include "specresp.h"
17
18
19
20//------------------------------------
21// Collaborating Class Declarations --
22//------------------------------------
23
24// ---------------------
25// -- Class Interface --
26// ---------------------
27
28class DistribFlatFilter:public SpectralResponse
29{
30public:
31 //Constructors
32 DistribFlatFilter (double numin, double numax);
33
34 // destructor
35 virtual ~DistribFlatFilter();
36
37 //
38 // Function members
39 //
40
41 double transmission(double) const;
42 void SetMultFactor(double mult) {
43 multFactor=mult;
44 }
45protected:
46 double UnSurdeltaFreq;
47 double multFactor;
48};
49
50#endif
Note: See TracBrowser for help on using the repository browser.