forked from cms-patatrack/pixeltrack-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FEDTrailer.h
62 lines (44 loc) · 1.63 KB
/
FEDTrailer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef DataFormats_FEDRawData_FEDTrailer_h
#define DataFormats_FEDRawData_FEDTrailer_h
/** \class FEDTrailer
* Helper class to interpret/create FED trailer words.
*
* \author N. Amapane - CERN, R. Mommsen - FNAL
*/
#include <cstdint>
struct fedt_struct;
class FEDTrailer {
public:
/// Constructor
FEDTrailer(const unsigned char* trailer);
/// Destructor
virtual ~FEDTrailer();
/// The length of the event fragment counted in 64-bit words including header and trailer
uint32_t fragmentLength() const;
/// Cyclic Redundancy Code of the event fragment including header and trailer
uint16_t crc() const;
/// Event fragment status information
uint8_t evtStatus() const;
/// Current value of the Trigger Throttling System bits
uint8_t ttsBits() const;
/// 0 -> the current trailer word is the last one.
/// 1 -> other trailer words can follow
bool moreTrailers() const;
/// True if the CRC value has been modified by the S-link sender card
bool crcModified() const;
/// True if the FRL has detected a transmission error over the s-link cable
bool slinkError() const;
/// True if the FED_ID given by the FED is not the one expected by the FRL
bool wrongFedId() const;
/// Check that the trailer is OK
bool check() const;
/// Return the word containing the consistency checks
uint32_t conscheck() const;
/// Set all fields in the trailer
static void set(
unsigned char* trailer, uint32_t lenght, uint16_t crc, uint8_t evt_stat, uint8_t tts, bool moreTrailers = false);
static const uint32_t length;
private:
const fedt_struct* theTrailer;
};
#endif // DataFormats_FEDRawData_FEDTrailer_h