#include <ostream>
#include <stdint.h>
#include <cassert>
#include <cstdlib>
#include <arpa/inet.h>
#include "utctime.hh"
 
Go to the source code of this file.
  
  
      
        
          | std::ostream& operator<<  | 
          ( | 
          std::ostream &  | 
          stream,  | 
         
        
           | 
           | 
          const CLBCommonHeader &  | 
          header  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | int32_t seq_number  | 
          ( | 
          CLBCommonHeader const &  | 
          header,  | 
         
        
           | 
           | 
          uint64_t  | 
          start_run_ms,  | 
         
        
           | 
           | 
          int  | 
          ts_duration_ms  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
inline   | 
  
 
Definition at line 87 of file clb_common_header.hh.
   92   return (header.timeStamp().inMilliSeconds() - start_run_ms) / ts_duration_ms;
 
 
 
 
Definition at line 116 of file clb_common_header.hh.
  118   const static uint32_t mask = 0x80000000;
 
  120   return header.domStatus() & mask;
 
 
 
 
Definition at line 124 of file clb_common_header.hh.
  126   const static uint32_t mask = 0x80000000;
 
  128   return header.domStatus(2) & mask;