source: Sophya/trunk/Poubelle/archTOI.old/toisvr.h@ 358

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

auxilliary GPS

File size: 627 bytes
RevLine 
[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]10class AuxGPS;
11
[310]12class TOISvr {
13public:
14 TOISvr();
15
16 void SetDirectory(string);
[342]17 void AddFile(string);
18 void OnBoardRecorderFiles(bool);
19 void SetMJD0(double);
[350]20 void SetPerEch(double);
[358]21 void UseAuxGPS(AuxGPS* gps);
[310]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
31protected:
32 TOIIter iter;
33};
34
35
36#endif
Note: See TracBrowser for help on using the repository browser.