Last change
on this file since 427 was 394, checked in by ansari, 26 years ago |
Integration detecteur d'etoiles DY
|
File size:
628 bytes
|
Rev | Line | |
---|
[394] | 1 | // archparam.h parametres generaux...
|
---|
| 2 | // Eric Aubourg CEA/DAPNIA/SPP septembre 1999
|
---|
| 3 |
|
---|
| 4 | #ifndef ARCHPARAM_H
|
---|
| 5 | #define ARCHPARAM_H
|
---|
| 6 |
|
---|
| 7 | struct ArchParam {
|
---|
| 8 | struct AcqParam {
|
---|
| 9 | double tBlock0; // MJD du bloc numero zero...
|
---|
| 10 | double perEch; // periode d''echantillonage en secondes
|
---|
| 11 | AcqParam();
|
---|
| 12 | };
|
---|
| 13 |
|
---|
| 14 | struct GeomParam {
|
---|
| 15 | GeomParam();
|
---|
| 16 | };
|
---|
| 17 |
|
---|
| 18 | struct SSTParam {
|
---|
| 19 | bool soustPente; // Decide que l'on soustrait une pente constante a la piste en cours
|
---|
| 20 | bool analFine;
|
---|
| 21 | SSTParam();
|
---|
| 22 | };
|
---|
| 23 |
|
---|
| 24 |
|
---|
| 25 | AcqParam acq;
|
---|
| 26 | GeomParam geo;
|
---|
| 27 | SSTParam sst;
|
---|
| 28 |
|
---|
| 29 | void Dump();
|
---|
| 30 | };
|
---|
| 31 |
|
---|
| 32 | extern ArchParam archParam;
|
---|
| 33 |
|
---|
| 34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.