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

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

Integration detecteur d'etoiles DY

File size: 577 bytes
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
10class AuxGPS;
11
12class TOISvr {
13public:
14 TOISvr();
15
16 void SetDirectory(string);
17 void AddFile(string);
18 void OnBoardRecorderFiles(bool);
19 void UseAuxGPS(AuxGPS* gps);
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
29protected:
30 TOIIter iter;
31};
32
33
34#endif
Note: See TracBrowser for help on using the repository browser.