--- yoda/event/EventHeader.h 2004/07/06 12:20:23 1.1.1.1 +++ yoda/event/EventHeader.h 2005/08/29 09:45:48 5.0 @@ -1,7 +1,7 @@ /** @file - * $Source: /home/cvspamela/yoda/event/EventHeader.h,v $ - * $Id: EventHeader.h,v 1.6 2004/03/16 10:18:28 nagni Exp $ - * $Author: nagni $ + * $Source: /home/cvsmanager/yoda/event/EventHeader.h,v $ + * $Id: EventHeader.h,v 4.4 2005/05/28 10:44:09 kusanagi Exp $ + * $Author: kusanagi $ * * Header file for the EventHeader class. */ @@ -9,16 +9,15 @@ #define EVENT_HEADER_H #include -// #include -// #include -#include //Substituted by Maurizio 05 Feb 2004 -#include //Substituted by Maurizio 05 Feb 2004 +#include +#include #include "SubPacket.h" #include "PscuHeader.h" #include "EventCounter.h" + namespace pamela { /** * Common raw event header. It contains the PSCU header and the Counter. @@ -38,8 +37,8 @@ /** Get the event counter. */ pamela::EventCounter *GetCounter() { return &Counter; } /** Get the PSCU header (information from the Pamela CPU board). */ - pamela::PscuHeader *GetPscuHeader() { return &Pscu; } - ClassDef(EventHeader, 1) + pamela::PscuHeader *GetPscuHeader() throw (Exception) { return &Pscu; } + ClassDef(EventHeader, 2) }; }