Line | |
---|
1 | // rotspeed.h
|
---|
2 | // Eric Aubourg CEA/DAPNIA/SPP octobre 1999
|
---|
3 |
|
---|
4 | #ifndef ROTSPEED_H
|
---|
5 | #define ROTSPEED_H
|
---|
6 |
|
---|
7 | #include "toipullproducer.h"
|
---|
8 |
|
---|
9 | class RotSpeed : public TOIPullProducer {
|
---|
10 | public:
|
---|
11 | RotSpeed();
|
---|
12 | virtual string getName();
|
---|
13 | virtual double getValue(long sampleNum, TOI const& toi);
|
---|
14 | virtual bool canGetValue(long sampleNum, TOI const& toi);
|
---|
15 | virtual bool canGetValueLater(long sampleNum, TOI const& toi);
|
---|
16 |
|
---|
17 | protected:
|
---|
18 | virtual set<TOI> reqTOIFor(TOI const&);
|
---|
19 |
|
---|
20 | private:
|
---|
21 | long sn1, sn2;
|
---|
22 | };
|
---|
23 |
|
---|
24 |
|
---|
25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.