|
ATLAS Offline Software
|
Go to the documentation of this file.
28 unsigned int divideHits (
unsigned int &sourceWord,
const unsigned int startBit,
const unsigned int endBit){
29 unsigned int targetWord =
shiftRight (sourceWord, startBit);
31 int length = endBit - startBit + 1;
33 unsigned int mask = 0;
44 std::cout <<
"error: length of the info is not correct " << std::endl;
53 int divideHits (
int &sourceWord,
const unsigned int startBit,
const unsigned int endBit){
54 int targetWord =
shiftRight (sourceWord, startBit);
56 int length = endBit - startBit + 1;
58 unsigned int mask = 0;
67 std::cout <<
"error: length of the info is not correct " << std::endl;