LDMX Software
Packing
include
Packing
LDMXRoRHeader.h
1
#pragma once
2
#ifndef PACKING_LDMXRORHEADER_H
3
#define PACKING_LDMXRORHEADER_H
4
5
#include <cstdint>
6
#include <unordered_map>
7
#include <vector>
8
9
#include "Packing/Utility/Reader.h"
10
11
namespace
packing {
12
22
class
LDMXRoRHeader
{
23
public
:
25
static
const
unsigned
int
SIZE
= 16;
35
static
const
std::unordered_map<std::string, int>
SUBSYSTEM_ID
;
36
49
static
const
std::unordered_map<std::string, int>
CONTRIBUTOR_ID
;
50
63
static
std::tuple<int, int>
subsystem
(
const
std::string& name);
64
66
utility::Reader
&
read
(
utility::Reader
& r);
69
bool
valid
()
const
{
return
valid_
; }
71
uint8_t
version
()
const
{
return
version_
; }
73
uint8_t
subsystem
()
const
{
return
subsystem_
; }
75
uint8_t
contributor
()
const
{
return
contributor_
; }
77
uint64_t
timestamp
()
const
{
return
timestamp_
; }
78
79
private
:
81
bool
valid_
{
false
};
83
uint8_t
version_
;
85
uint8_t
subsystem_
;
87
uint8_t
contributor_
;
95
uint64_t
timestamp_
;
96
};
97
98
}
// namespace packing
99
100
#endif
packing::LDMXRoRHeader
the header that the LDMX DAQ Firmware block includes in the output data stream at the beginning of ea...
Definition
LDMXRoRHeader.h:22
packing::LDMXRoRHeader::timestamp_
uint64_t timestamp_
timestamp of this Readout-Request (RoR)
Definition
LDMXRoRHeader.h:95
packing::LDMXRoRHeader::subsystem
uint8_t subsystem() const
ID number for subsystem originating data (compiled into firmware)
Definition
LDMXRoRHeader.h:73
packing::LDMXRoRHeader::valid_
bool valid_
set to true only when all validity checks pass during read()
Definition
LDMXRoRHeader.h:81
packing::LDMXRoRHeader::contributor
uint8_t contributor() const
ID number for contributor within subsystem (configured into firmware)
Definition
LDMXRoRHeader.h:75
packing::LDMXRoRHeader::version
uint8_t version() const
version of LDMX data (should be zero)
Definition
LDMXRoRHeader.h:71
packing::LDMXRoRHeader::valid
bool valid() const
true if the header was parsed successfully (sentinel and reserved word matched)
Definition
LDMXRoRHeader.h:69
packing::LDMXRoRHeader::contributor_
uint8_t contributor_
ID number for contributor within subsystem (configured into firmware)
Definition
LDMXRoRHeader.h:87
packing::LDMXRoRHeader::SUBSYSTEM_ID
static const std::unordered_map< std::string, int > SUBSYSTEM_ID
The subsystem ID numbers organized by subsystem name.
Definition
LDMXRoRHeader.h:35
packing::LDMXRoRHeader::timestamp
uint64_t timestamp() const
get timestamp of this RoR
Definition
LDMXRoRHeader.h:77
packing::LDMXRoRHeader::version_
uint8_t version_
version of LDMX data (should be zero)
Definition
LDMXRoRHeader.h:83
packing::LDMXRoRHeader::read
utility::Reader & read(utility::Reader &r)
read the next LDMX RoR header into memory
Definition
LDMXRoRHeader.cxx:27
packing::LDMXRoRHeader::subsystem_
uint8_t subsystem_
ID number for subsystem originating data (compiled into firmware)
Definition
LDMXRoRHeader.h:85
packing::LDMXRoRHeader::CONTRIBUTOR_ID
static const std::unordered_map< std::string, int > CONTRIBUTOR_ID
The contributor ID is a configurable parameter of the DAQ firmware.
Definition
LDMXRoRHeader.h:49
packing::LDMXRoRHeader::SIZE
static const unsigned int SIZE
size of this header in bytes
Definition
LDMXRoRHeader.h:25
packing::utility::Reader
Reading a raw data file.
Definition
Reader.h:20
Generated by
1.12.0