Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 #ifndef __PACKET_CDEVIR_H__
0002 #define __PACKET_CDEVIR_H__
0003 
0004 
0005 #include <packet_w124.h>
0006 
0007 /**
0008    This is the packet which deals with data in CDEVIR format.
0009    It inherits from Packet\_w4 because the data are 32bit entities.
0010 
0011 
0012 */
0013 
0014 
0015 
0016 #ifndef __CINT__
0017 class WINDOWSEXPORT Packet_cdevir : public Packet_w4 {
0018 #else
0019 class  Packet_cdevir : public Packet_w4 {
0020 #endif
0021 
0022 public:
0023   Packet_cdevir(PACKET_ptr);
0024   virtual void  dump ( OSTREAM& ) ;
0025   virtual double  dValue(const int channel,const char *what);
0026 
0027 protected:
0028   virtual int *decode (int *);
0029   struct cdevIrData *ps;
0030 };
0031 
0032 #endif /* __PACKET_CDEVIR_H__ */