/** @file * $Source: /home/cvsmanager/yoda/event/dataManager/RegistryEvent.h,v $ * $Id: RegistryItem.h,v 4.0 2005/03/06 04:33:01 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the RegistryEvent class. */ #ifndef REGISTRY_EVENT_H #define REGISTRY_EVENT_H #include "TObject.h" namespace pamela { /** * RegistryEvent data Wrapper */ class RegistryEvent: public TObject { private: public: /* This is the absolute Time of the event calculated after data unpacking*/ unsigned long absTime; /* Because on transmission multiple copies of data could be unpacked, a special procedure * collect all the event just one time each. This parameter is related to the entry relative * to that selected event. */ unsigned int event; RegistryEvent(); ~RegistryEvent(void){}; ClassDef(RegistryEvent, 1) }; } #endif /* REGISTRY_EVENT_H */