Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
source
visualization
RayTracer
src
G4RTOutBitStream.cc
Go to the documentation of this file.
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
26
//
27
// $Id$
28
//
29
//
30
//
31
32
#include <string.h>
33
#include "
G4RTJpeg.hh
"
34
#include "
G4RTOutBitStream.hh
"
35
36
37
38
G4OutBitStream::G4OutBitStream
(
int
size)
39
{
40
if
(size < 1)
41
throw
(
G4MemoryError
( size,
"G4OutBitStream"
) );
42
43
mHeadOfBuf
=
mBuf
=
new
u_char
[size];
44
if
(
mHeadOfBuf
== 0 )
45
throw
(
G4MemoryError
( size,
"G4OutBitStream"
) );
46
47
mEndOfBuf
=
mBuf
+ size;
48
49
memset(
mHeadOfBuf
, 0, size );
50
51
mBitPos
= 7;
52
mWriteFlag
= 1;
53
}
54
55
G4OutBitStream::~G4OutBitStream
()
56
{
57
delete
mBuf
;
58
}
59
60
void
61
G4OutBitStream::IncBuf
(
void
)
62
{
63
if
( ++
mBuf
>=
mEndOfBuf
)
64
mWriteFlag
= 0;
65
}
66
67
68
69
void
70
G4OutBitStream::SetBits
(
int
v
,
int
numBits)
71
{
72
if
( numBits == 0 )
73
return
;
74
if
( numBits > 16 )
75
throw
(
G4BufferError
(
"SetBits:Max Bit Over"
) );
76
if
( numBits > 8 ){
77
Set8Bits
(
u_char
(v>>8), numBits-8 );
78
numBits = 8;
79
}
80
Set8Bits
(
u_char
(v), numBits );
81
}
82
83
void
84
G4OutBitStream::SetFewBits
(
u_char
v
,
int
numBits)
85
{
86
v &= BitFullMaskT[numBits-1];
87
*
mBuf
|= v << (
mBitPos
+ 1 - numBits);
88
if
( (
mBitPos
-= numBits) < 0 ){
89
if
( *
mBuf
== 0xff ){
90
IncBuf
();
91
*
mBuf
= 0;
92
}
93
IncBuf
();
94
mBitPos
= 7;
95
}
96
}
97
98
void
99
G4OutBitStream::SetBits2Byte
(
u_char
v
,
int
numBits)
100
{
101
v &= BitFullMaskT[numBits-1];
102
int
nextBits = numBits - (
mBitPos
+ 1);
103
*
mBuf
|= ( v >> nextBits ) & BitFullMaskT[
mBitPos
];
104
if
( *
mBuf
== 0xff ){
105
IncBuf
();
106
*
mBuf
= 0;
107
}
108
IncBuf
();
109
110
*
mBuf
= v << (8 - nextBits);
111
mBitPos
= 7 - nextBits;
112
}
113
114
void
115
G4OutBitStream::Set8Bits
(
u_char
v
,
int
numBits)
116
{
117
if
(
mBitPos
+ 1 >= numBits )
118
SetFewBits
( (
u_char
)v, numBits );
119
else
120
SetBits2Byte
( (
u_char
)v, numBits );
121
}
122
123
124
void
125
G4OutBitStream::FullBit
(
void
)
126
{
127
if
(
mBitPos
!= 7 )
128
SetFewBits
( BitFullMaskT[
mBitPos
], mBitPos+1 );
129
}
130
131
void
132
G4OutBitStream::SetByte
(
u_char
dat)
133
{
134
if
(
mWriteFlag
){
135
FullBit
();
136
*
mBuf
= dat;
137
IncBuf
();
138
return
;
139
}
140
throw
(
G4BufferError
(
"SetByte"
) );
141
}
142
143
void
144
G4OutBitStream::SetWord
(
u_int
dat)
145
{
146
if
(
mWriteFlag
){
147
FullBit
();
148
*
mBuf
= (dat >> 8) & 0xff;
149
IncBuf
();
150
*
mBuf
= dat & 0xff;
151
IncBuf
();
152
return
;
153
}
154
throw
(
G4BufferError
(
"SetWord"
) );
155
}
156
157
void
158
G4OutBitStream::CopyByte
(
const
char
* src,
int
n
)
159
{
160
if
(
mBuf
+n <
mEndOfBuf
){
161
FullBit
();
162
memcpy(
mBuf
, src, n );
163
mBuf
+=
n
;
164
return
;
165
}
166
throw
(
G4BufferError
(
"CopyByte"
) );
167
}
168
Generated on Sat May 25 2013 14:34:18 for Geant4 by
1.8.4