/** @file * $Source: /home/cvsmanager/yoda/event/OrbitalEvent.cpp,v $ * $Id: OrbitalEvent.cpp,v 1.1 2004/07/06 12:20:23 kusanagi Exp $ * $Author: kusanagi $ * * Implementation of the OrbitalEvent class. */ #include "OrbitalEvent.h" using namespace pamela; OrbitalEvent::OrbitalEvent(void): SubPacket("Techmodel", PacketType::Orbital) { } /** * Set the information of the OrbitalEvent. * @param t Time * @param o Orbit number * @param h Height */ void OrbitalEvent::Set(int t, int o, float h) { Time = t; Orbit = o; Height = h; } ClassImp(OrbitalEvent)