Line | |
---|
1 | // toisvr.h
|
---|
2 | // Eric Aubourg CEA/DAPNIA/SPP juillet 1999
|
---|
3 |
|
---|
4 |
|
---|
5 | #ifndef TOISVR_H
|
---|
6 | #define TOISVR_H
|
---|
7 |
|
---|
8 | #include "toiiter.h"
|
---|
9 |
|
---|
10 | class AuxGPS;
|
---|
11 |
|
---|
12 | class TOISvr {
|
---|
13 | public:
|
---|
14 | TOISvr();
|
---|
15 |
|
---|
16 | void SetDirectory(string);
|
---|
17 | void AddFile(string);
|
---|
18 | void OnBoardRecorderFiles(bool);
|
---|
19 | void SetMJD0(double);
|
---|
20 | void SetPerEch(double);
|
---|
21 | void UseAuxGPS(AuxGPS* gps);
|
---|
22 |
|
---|
23 | void SetTimeInterval(double tStart, double tEnd);
|
---|
24 |
|
---|
25 | void AddInfo(TOIKind kind, int index, bool triggering=true, bool interp=false);
|
---|
26 | void AddInfo(TOIKind kind, bool triggering=true, bool interp=false);
|
---|
27 |
|
---|
28 | TOIIter DoQuery();
|
---|
29 |
|
---|
30 |
|
---|
31 | protected:
|
---|
32 | TOIIter iter;
|
---|
33 | };
|
---|
34 |
|
---|
35 |
|
---|
36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.