EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
packet_w124.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file packet_w124.h
1 #ifndef __PACKET_W124_H__
2 #define __PACKET_W124_H__
3 
4 #include "packet_A.h"
5 #include "packetHeaders.h"
6 #include <stddef.h>
7 #include <stdlib.h>
8 #include <string.h>
9 
22 #ifndef __CINT__
24 #else
25 class Packet_w1 : public Packet_A {
26 #endif
27 public:
28 
29  Packet_w1();
31 
32  void dump ( OSTREAM& =COUT ) ;
33  void gdump (const int how = EVT_HEXADECIMAL, OSTREAM& = COUT) const;
34 
35 protected:
36  inline int *decode (int *) {return 0;};
37 
38 };
39 
40 // ----------------------------------------------------
53 #ifndef __CINT__
55 #else
56 class Packet_w2 : public Packet_A {
57 #endif
58 public:
59  Packet_w2();
61 
62  void dump ( OSTREAM& ) ;
63  void gdump (const int how = EVT_HEXADECIMAL, OSTREAM& = COUT) const;
64 
65 protected:
66  inline int *decode (int *) {return 0;};
67 };
68 
69 
70 // ----------------------------------------------------
71 
83 #ifndef __CINT__
85 #else
86 class Packet_w4 : public Packet_A {
87 #endif
88 public:
89 
90  Packet_w4();
92 
93 
94  void dump ( OSTREAM& ) ;
95  void gdump (const int how = EVT_HEXADECIMAL, OSTREAM& = COUT) const;
96 
97 protected:
98  inline int *decode (int *) {return 0;};
99 };
100 
101 
102 #endif /* __PACKET_W124_H__ */
103 
104 
105