Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-05-31 04:19:41

0001 #ifndef IOPool_Streamer_DumpTools_h
0002 #define IOPool_Streamer_DumpTools_h
0003 
0004 /** File contains simple tools to dump Init and Event 
0005     Messages on screen.
0006 */
0007 
0008 #include "IOPool/Streamer/interface/MsgTools.h"
0009 #include "IOPool/Streamer/interface/InitMessage.h"
0010 #include "IOPool/Streamer/interface/EventMessage.h"
0011 #include "IOPool/Streamer/interface/FRDEventMessage.h"
0012 namespace edm::streamer {
0013   void dumpInitHeader(const InitMsgView* view);
0014   void dumpInitView(const InitMsgView* view);
0015   void dumpStartMsg(const InitMsgView* view);
0016   void dumpInitVerbose(const InitMsgView* view);
0017   void dumpInit(uint8* buf);
0018   void printBits(unsigned char c);
0019   void dumpEventHeader(const EventMsgView* eview);
0020   void dumpEventView(const EventMsgView* eview);
0021   void dumpEventIndex(const EventMsgView* eview);
0022   void dumpEvent(uint8* buf);
0023   void dumpFRDEventView(const FRDEventMsgView* fview);
0024 }  // namespace edm::streamer
0025 #endif