1 |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/event/RegistryEvent.h,v $ |
3 |
* $Id: RegistryEvent.h,v 4.1 2005/08/29 09:20:47 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
5 |
* |
6 |
* Header file for the RegistryEvent class. |
7 |
*/ |
8 |
#ifndef REGISTRY_EVENT_H |
9 |
#define REGISTRY_EVENT_H |
10 |
|
11 |
#include "TObject.h" |
12 |
namespace pamela { |
13 |
/** |
14 |
* RegistryEvent data Wrapper |
15 |
*/ |
16 |
class RegistryEvent: public TObject { |
17 |
private: |
18 |
|
19 |
public: |
20 |
/* This is the absolute Time of the event calculated after data unpacking*/ |
21 |
unsigned long absTime; |
22 |
|
23 |
/* Because on transmission multiple copies of data could be unpacked, a special procedure |
24 |
* collect all the event just one time each. This parameter is related to the entry relative |
25 |
* to that selected event. |
26 |
*/ |
27 |
unsigned int event; |
28 |
|
29 |
RegistryEvent(); |
30 |
~RegistryEvent(void){}; |
31 |
ClassDef(RegistryEvent, 1) |
32 |
}; |
33 |
} |
34 |
|
35 |
#endif /* REGISTRY_EVENT_H */ |
36 |
|