source: Sophya/trunk/Poubelle/archTOI.old/archparam.cc@ 416

Last change on this file since 416 was 394, checked in by ansari, 26 years ago

Integration detecteur d'etoiles DY

File size: 843 bytes
Line 
1// archparam.cc parametres generaux...
2// Eric Aubourg CEA/DAPNIA/SPP septembre 1999
3
4#include "archparam.h"
5#include <iostream.h>
6
7ArchParam archParam;
8
9// constructeurs avec parametres par defaut adaptes au vol
10// TRAPANI 99
11
12ArchParam::AcqParam::AcqParam()
13: tBlock0 (1376.8358818),
14 perEch (0.005836818076)
15{}
16
17ArchParam::GeomParam::GeomParam()
18{}
19
20ArchParam::SSTParam::SSTParam()
21: soustPente (true),
22 analFine (false)
23{}
24
25
26void ArchParam::Dump()
27{
28 cout << "***Archeops parameters\n";
29 cout << " **ACQ\n";
30 cout << " tBlock0 " << acq.tBlock0 << "\n";
31 cout << " perEch " << acq.perEch << "\n";
32 cout << " **GEOM\n";
33 cout << " **SST\n";
34 cout << " soustPente " << sst.soustPente << "\n";
35 cout << " analFine " << sst.analFine << "\n";
36 cout << "***END" << endl;
37}
Note: See TracBrowser for help on using the repository browser.