#include <cstdlib>
#include <iostream>
#include <vector>
#include <map>
#include <string>
Go to the source code of this file.
|
int | get_hex_bits (unsigned int hexNum, int numBitFromRight, int numBits) |
|
int | get_hex_bit (unsigned int hexNum, int numBitFromRight) |
|
int | get_bin_bits (unsigned int binNum, int numBitFromRight, int numBits) |
|
int | get_bin_bit (unsigned int binNum, int numBitFromRight) |
|
void | Abort (const char *message) |
|
void | PrintWords (int *words, int idx_begin, int idx_end, int idx_atte=-1) |
|
void | PrintCodaEventSummary (int *words) |
|
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ anonymous enum
◆ Abort()
void Abort |
( |
const char * |
message | ) |
|
◆ get_bin_bit()
int get_bin_bit |
( |
unsigned int |
binNum, |
|
|
int |
numBitFromRight |
|
) |
| |
This function takes an integer, grabs a certain binary digit from a certain position in the binary number.
For example, if number = 11010001101011100 (or, 0d107356) then get_bin_bit(number, 3) would return 1 (or 0d01), representing 11010001101011100 <– this part of the number ^
Definition at line 194 of file CodaInputManager.cc.
Referenced by get_bin_bits().
◆ get_bin_bits()
int get_bin_bits |
( |
unsigned int |
binNum, |
|
|
int |
numBitFromRight, |
|
|
int |
numBits |
|
) |
| |
This function takes an integer, grabs a certain number of binary digits from a certain position in the binary number.
For example, if number = 11010001101011100, then get_bin_bits(number, 3, 3) would return 110 (or 0d06), representing 11010001101011100 <– those parts of the number ^^^
Definition at line 212 of file CodaInputManager.cc.
References get_bin_bit().
◆ get_hex_bit()
int get_hex_bit |
( |
unsigned int |
hexNum, |
|
|
int |
numBitFromRight |
|
) |
| |
This function takes an integer, grabs a certain number of hexadecimal digits from a certain position in the hex representation of the number.
For example, if number = 0x10e59c (or, 0d107356) then get_hex_bit(number, 3) would return e (or 0d14), representing 0x10e59c <– those parts of the number
Definition at line 141 of file CodaInputManager.cc.
◆ get_hex_bits()
int get_hex_bits |
( |
unsigned int |
hexNum, |
|
|
int |
numBitFromRight, |
|
|
int |
numBits |
|
) |
| |
This function takes an integer, grabs a certain number of hexadecimal digits from a certain position in the hex representation of the number.
For example, if number = 0x10e59c (or, 0d107356) then get_bin_bits(number, 3, 3) would return e59 (or 0d3673), representing 0x10e59c <– those parts of the number ^^^
Definition at line 161 of file CodaInputManager.cc.
Referenced by PrintCodaEventSummary().
◆ PrintCodaEventSummary()
void PrintCodaEventSummary |
( |
int * |
words | ) |
|
Print out lists of ROCs and boards found in one Coda event.
This function might be useful when you check the word format independent of all main functions (like ProcessPhysFlush() & format()). But you should not assume that the output of this function is always consistent with those of the main functions, since this function decodes words by itself.
Definition at line 260 of file CodaInputManager.cc.
References get_hex_bits().
◆ PrintWords()
void PrintWords |
( |
int * |
words, |
|
|
int |
idx_begin, |
|
|
int |
idx_end, |
|
|
int |
idx_atte = -1 |
|
) |
| |