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