ATLAS Offline Software
Loading...
Searching...
No Matches
ZdcWordDecoder.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#include <cstdlib>
8
9//using namespace LVL1BS;
10
11BitField::BitField(const std::string& name, uint8_t begin, uint8_t size):
12 m_name(name) {
13 m_shift = begin;
14 m_mask = (1 << size) - 1;
15}
uint32_t m_mask
uint8_t m_shift
BitField(const std::string &name, uint8_t begin, uint8_t size)
std::string m_name