Last change
on this file since 4014 was 801, checked in by ansari, 25 years ago |
Fichiers au format unix
dominique
|
File size:
680 bytes
|
Line | |
---|
1 | // Dominique YVON, CEA/DAPNIA/SPP 02/2000
|
---|
2 |
|
---|
3 | #ifndef LOBESPECRESP_H
|
---|
4 | #define LOBESPECRESP_H
|
---|
5 |
|
---|
6 | #include "specresp.h"
|
---|
7 | #include "unitvector.h"
|
---|
8 |
|
---|
9 | class AbsLobeNoPolar;
|
---|
10 |
|
---|
11 |
|
---|
12 | class LobeSpecResp:public SpectralResponse {
|
---|
13 | public:
|
---|
14 | LobeSpecResp(AbsLobeNoPolar* pLob, const UnitVector& VInteg,
|
---|
15 | const UnitVector& VP,const UnitVector& VY, double numin=1.,
|
---|
16 | double numax=1000.)
|
---|
17 | :SpectralResponse(numin,numax),pLobe(pLob),Vpointe(VP),
|
---|
18 | VaxeY(VY), VIntegration(VInteg) { }
|
---|
19 | ~LobeSpecResp() { }
|
---|
20 | virtual double transmission(double freq) const ;
|
---|
21 | protected:
|
---|
22 | AbsLobeNoPolar* pLobe;
|
---|
23 | const UnitVector& Vpointe;
|
---|
24 | const UnitVector& VaxeY;
|
---|
25 | const UnitVector& VIntegration;
|
---|
26 | };
|
---|
27 | #endif |
---|
Note:
See
TracBrowser
for help on using the repository browser.