Last change
on this file since 3794 was 3792, checked in by ansari, 15 years ago |
Ajout du programme de calcul et sauvegarde reponse interfero, Reza 28/06/2010
|
File size:
1.1 KB
|
Rev | Line | |
---|
[3792] | 1 | /* ------------------------ Projet BAORadio --------------------
|
---|
| 2 | Differentes configurations de l'interferometre
|
---|
| 3 | R. Ansari , C. Magneville - Juin 2010
|
---|
| 4 | --------------------------------------------------------------- */
|
---|
| 5 |
|
---|
| 6 | #ifndef INTERFCONFIGS_SEEN
|
---|
| 7 | #define INTERFCONFIGS_SEEN
|
---|
| 8 |
|
---|
| 9 | #include "mdish.h"
|
---|
| 10 | #include <vector>
|
---|
| 11 | #include <string>
|
---|
| 12 |
|
---|
| 13 |
|
---|
| 14 | //-----------------------------------------------------------------------------------
|
---|
| 15 | // Fonctions de creation de configuration d'interfero avec des dishs
|
---|
| 16 | //-----------------------------------------------------------------------------------
|
---|
| 17 |
|
---|
| 18 | vector<Dish> CreateFilledSqConfig(int nd, double Ddish=5., double Eta=0.9);
|
---|
| 19 | vector<Dish> CreateSemiFilledSqConfig(int nd, double Ddish=5., double Eta=0.9);
|
---|
| 20 | vector<Dish> CreateConfigA(double Ddish=5., double Eta=0.9);
|
---|
| 21 | vector<Dish> CreateConfigB(double Ddish=5., double Eta=0.9);
|
---|
| 22 | vector<Dish> CreateConfigC(double Ddish=5., double Eta=0.9);
|
---|
| 23 | vector<Dish> CreateConfigD(double Ddish=5., double Eta=0.9);
|
---|
| 24 |
|
---|
| 25 |
|
---|
| 26 | vector<Dish> CreateFilledCylConfig(int ncyl, int nRL, double cylW=10., double cylRL=0.5,
|
---|
| 27 | double etaW=0.9, double etaRL=0.9, bool fgscid=true);
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 |
|
---|
| 31 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.