Class Reference for E1039 Core & Analysis Software
CodaInputManager.cc File Reference
#include <iostream>
#include <iomanip>
#include <sstream>
#include <cstdlib>
#include <fstream>
#include <unistd.h>
#include <UtilAna/UtilOnline.h>
#include "evio.h"
#include "CodaInputManager.h"
+ Include dependency graph for CodaInputManager.cc:

Go to the source code of this file.

Functions

int get_hex_bit (unsigned int hexNum, int numBitFromRight)
 
int get_hex_bits (unsigned int hexNum, int numBitFromRight, int numBits)
 
int get_bin_bit (unsigned int binNum, int numBitFromRight)
 
int get_bin_bits (unsigned int binNum, int numBitFromRight, int numBits)
 
void Abort (const char *message)
 
void PrintWords (int *words, int idx_begin, int idx_end, int idx_atte)
 
void PrintCodaEventSummary (int *words)
 

Function Documentation

◆ Abort()

void Abort ( const char *  message)

Definition at line 234 of file CodaInputManager.cc.

◆ 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().

+ Here is the caller graph for this function:

◆ 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().

+ Here is the call graph for this function:

◆ 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().

+ Here is the caller graph for this function:

◆ 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().

+ Here is the call graph for this function:

◆ PrintWords()

void PrintWords ( int *  words,
int  idx_begin,
int  idx_end,
int  idx_atte 
)

Definition at line 240 of file CodaInputManager.cc.