/[PAMELA software]/yoda/event/OrbitalEvent.h
ViewVC logotype

Contents of /yoda/event/OrbitalEvent.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (show annotations) (download)
Thu Jul 29 16:18:54 2004 UTC (20 years, 4 months ago) by kusanagi
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +3 -3 lines
File MIME type: text/plain
FILE REMOVED
*** empty log message ***

1 /** @file
2 * $Source: /home/cvsmanager/yoda/event/OrbitalEvent.h,v $
3 * $Id: OrbitalEvent.h,v 1.1 2004/07/06 12:20:23 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Header file for the OrbitalEvent class.
7 */
8 #ifndef ORBITAL_EVENT_H
9 #define ORBITAL_EVENT_H
10
11 #include "SubPacket.h"
12
13 namespace pamela {
14 /**
15 * Information events about the orbit.
16 */
17 class OrbitalEvent: public pamela::SubPacket {
18 private:
19 int Time; /**< Orbit time. */
20 int Orbit; /**< Orbit number. */
21 float Height; /**< Height above N.N. in meters. */
22 public:
23 OrbitalEvent(void);
24 /** Get the orbit time. */
25 int GetTime(void) const { return Time; }
26 /** Get the orbit number. */
27 int GetOrbit(void) const { return Orbit; }
28 /** Get the height of the satellite in meters. */
29 float GetHeight(void) const { return Height; }
30 void Set(int, int, float);
31 ClassDef(OrbitalEvent, 1)
32 };
33 }
34
35 #endif /* ORBITAL_EVENT_H */
36

  ViewVC Help
Powered by ViewVC 1.1.23