Last change
on this file since 3986 was 801, checked in by ansari, 25 years ago |
Fichiers au format unix
dominique
|
File size:
636 bytes
|
Rev | Line | |
---|
[801] | 1 | // Dominique YVON, CEA/DAPNIA/SPP 02/2000
|
---|
| 2 |
|
---|
| 3 | #ifndef LSrcRadSpec_H
|
---|
| 4 | #define LSrcRadSpec_H
|
---|
| 5 |
|
---|
| 6 | #define FreqIntegMin (1.)
|
---|
| 7 | #define FreqIntegMax (1000.)
|
---|
| 8 |
|
---|
| 9 | #include "radspec.h"
|
---|
| 10 |
|
---|
| 11 | class AbsLightSource;
|
---|
| 12 |
|
---|
| 13 | class LSrcRadSpec:public RadSpectra{
|
---|
| 14 | public:
|
---|
| 15 | //--------------- Constructor ---------------------------------
|
---|
| 16 | LSrcRadSpec(AbsLightSource* pLSrc, double theta, double phi,
|
---|
| 17 | double FreqMin=FreqIntegMin, double FreqMax=FreqIntegMax);
|
---|
| 18 |
|
---|
| 19 | //--------------- Desctructor ---------------------------------
|
---|
| 20 | ~LSrcRadSpec() {}
|
---|
| 21 |
|
---|
| 22 | double flux(double freq) const;
|
---|
| 23 |
|
---|
| 24 | protected:
|
---|
| 25 | AbsLightSource* pLightSrc;
|
---|
| 26 | double Theta;
|
---|
| 27 | double Phi;
|
---|
| 28 | };
|
---|
| 29 |
|
---|
[798] | 30 | #endif |
---|
Note:
See
TracBrowser
for help on using the repository browser.