Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:51

0001 #ifndef __PACKET_ID2EVT_H__
0002 #define __PACKET_ID2EVT_H__
0003 
0004 
0005 #include "packet_w124.h"
0006 /**
0007    This is the packet which deals with data in ID2EVT format.
0008    It inherits from Packet\_w2 because the data are 16bit entities.
0009 */
0010 
0011 #ifndef __CINT__
0012 class WINDOWSEXPORT Packet_id2evt : public Packet_w2 {
0013 #else
0014 class  Packet_id2evt : public Packet_w2 {
0015 #endif
0016 
0017 public:
0018   Packet_id2evt(PACKET_ptr);
0019 
0020 protected:
0021   virtual int *decode (int *);
0022 };
0023 
0024 #endif /* __PACKET_ID2EVT_H__ */