1 |
cafagna |
1.1 |
/** @file
|
2 |
|
|
* $Source: /afs/ba.infn.it/user/pamela/src/CVS/quicklook/OrbitalRate/inc/PscuEvent.h,v $
|
3 |
|
|
* $Id: PscuEvent.h,v 1.1 2006/12/05 19:49:14 pam-rm2 Exp $
|
4 |
|
|
* $Author: pam-rm2 $
|
5 |
|
|
*
|
6 |
|
|
* Header file for the PscuEvent class.
|
7 |
|
|
*/
|
8 |
|
|
#ifndef PSCU_EVENT_H
|
9 |
|
|
#define PSCU_EVENT_H
|
10 |
|
|
|
11 |
|
|
#include "SubPacket.h"
|
12 |
|
|
|
13 |
|
|
namespace pamela {
|
14 |
|
|
/**
|
15 |
|
|
* Information events about the pscu.
|
16 |
|
|
*/
|
17 |
|
|
class PscuEvent: public pamela::SubPacket {
|
18 |
|
|
private:
|
19 |
|
|
public:
|
20 |
|
|
PscuEvent(void);
|
21 |
|
|
ClassDef(PscuEvent, 1)
|
22 |
|
|
};
|
23 |
|
|
}
|
24 |
|
|
|
25 |
|
|
#endif /* PSCU_EVENT_H */
|
26 |
|
|
|