/** @file * $Source: /home/cvspamela/yoda/event/tmtc/TmtcEvent.cpp,v $ * $Id: TmtcEvent.cpp,v 1.6 2004/03/16 10:18:28 nagni Exp $ * $Author: nagni $ * * Implementation of the TmtcEvent class. */ #include "TmtcEvent.h" using namespace pamela; TClonesArray *TmtcEvent::fgRecords = 0; TmtcEvent::TmtcEvent(void): SubPacket("Event", PacketType::Tmtc) { Records = new TClonesArray("pamela::TmtcRecord", 1); //Records = fgRecords; } TmtcEvent::~TmtcEvent(void) { } ClassImp(TmtcEvent)