--- yoda/event/EventHeader.h 2004/09/21 20:49:57 2.0 +++ yoda/event/EventHeader.h 2005/03/06 04:33:01 4.0 @@ -1,6 +1,6 @@ /** @file * $Source: /home/cvsmanager/yoda/event/EventHeader.h,v $ - * $Id: EventHeader.h,v 1.2 2004/09/21 20:23:37 kusanagi Exp $ + * $Id: EventHeader.h,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the EventHeader class. @@ -17,6 +17,7 @@ #include "PscuHeader.h" #include "EventCounter.h" + namespace pamela { /** * Common raw event header. It contains the PSCU header and the Counter. @@ -36,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) }; }