Last change
on this file since 668 was 668, checked in by ansari, 26 years ago |
Ajout de classes deleguees PPersist et correction integration - Sophie 29/11/99
|
File size:
1.2 KB
|
Rev | Line | |
---|
[601] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | //--------------------------------------------------------------------------
|
---|
| 3 | // File and Version Information:
|
---|
[668] | 4 | // $Id: nupower.h,v 1.4 1999-11-29 14:16:05 ansari Exp $
|
---|
[601] | 5 | //
|
---|
| 6 | // Description:
|
---|
| 7 | //
|
---|
| 8 | // History (add to end):
|
---|
| 9 | // Sophie Oct, 1999 - creation
|
---|
| 10 | //
|
---|
| 11 | //------------------------------------------------------------------------
|
---|
| 12 |
|
---|
| 13 | #ifndef NUPOWER_H_SEEN
|
---|
| 14 | #define NUPOWER_H_SEEN
|
---|
| 15 |
|
---|
| 16 | #include "radspec.h"
|
---|
| 17 | #include "convtools.h"
|
---|
| 18 |
|
---|
[610] | 19 | // Power law spectra f = a ((nu-nu0)/dnu)^b
|
---|
[601] | 20 | class PowerLawSpectra : public RadSpectra
|
---|
| 21 | {
|
---|
| 22 | public: //Constructor
|
---|
| 23 |
|
---|
[668] | 24 | PowerLawSpectra();
|
---|
[610] | 25 | PowerLawSpectra(double a, double b, double nu0, double dnu, double numin=0., double numax=9.e49);
|
---|
[601] | 26 |
|
---|
| 27 | virtual ~PowerLawSpectra();
|
---|
| 28 |
|
---|
| 29 | virtual double flux(double nu) const;
|
---|
| 30 |
|
---|
| 31 | // Redefintion of the Print function
|
---|
| 32 | virtual void Print(ostream& os) const;
|
---|
[668] | 33 |
|
---|
| 34 | virtual inline double giveNorm() const {return _a;};
|
---|
| 35 | virtual inline double giveNu0() const {return _nu0;};
|
---|
| 36 | virtual inline double giveDNu() const {return _dnu;};
|
---|
| 37 | virtual inline double giveExp() const {return _b;};
|
---|
| 38 |
|
---|
| 39 | virtual void WriteSelf(POutPersist& s) ;
|
---|
| 40 | virtual void ReadSelf(PInPersist& s) ;
|
---|
| 41 |
|
---|
[601] | 42 |
|
---|
| 43 | protected:
|
---|
[610] | 44 | double _a, _b, _nu0, _dnu;
|
---|
[601] | 45 | };
|
---|
| 46 |
|
---|
| 47 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.