Last change
on this file since 396 was 394, checked in by ansari, 26 years ago |
Integration detecteur d'etoiles DY
|
File size:
577 bytes
|
Rev | Line | |
---|
[350] | 1 | // toisvr.h
|
---|
| 2 | // Eric Aubourg CEA/DAPNIA/SPP juillet 1999
|
---|
| 3 |
|
---|
| 4 |
|
---|
[310] | 5 | #ifndef TOISVR_H
|
---|
| 6 | #define TOISVR_H
|
---|
| 7 |
|
---|
| 8 | #include "toiiter.h"
|
---|
| 9 |
|
---|
[358] | 10 | class AuxGPS;
|
---|
| 11 |
|
---|
[310] | 12 | class TOISvr {
|
---|
| 13 | public:
|
---|
| 14 | TOISvr();
|
---|
| 15 |
|
---|
| 16 | void SetDirectory(string);
|
---|
[342] | 17 | void AddFile(string);
|
---|
| 18 | void OnBoardRecorderFiles(bool);
|
---|
[358] | 19 | void UseAuxGPS(AuxGPS* gps);
|
---|
[310] | 20 |
|
---|
| 21 | void SetTimeInterval(double tStart, double tEnd);
|
---|
| 22 |
|
---|
| 23 | void AddInfo(TOIKind kind, int index, bool triggering=true, bool interp=false);
|
---|
| 24 | void AddInfo(TOIKind kind, bool triggering=true, bool interp=false);
|
---|
| 25 |
|
---|
| 26 | TOIIter DoQuery();
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | protected:
|
---|
| 30 | TOIIter iter;
|
---|
| 31 | };
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.