Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
src
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
H5hut
src
Commits
db0a1bd4
Commit
db0a1bd4
authored
Sep 22, 2006
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/H5Part.h
- declare arguments as "const" where possible
parent
92174627
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
src/H5Part.h
src/H5Part.h
+15
-15
No files found.
src/H5Part.h
View file @
db0a1bd4
...
...
@@ -64,28 +64,28 @@ H5PartCloseFile (
h5part_int64_t
H5PartSetNumParticles
(
H5PartFile
*
f
,
h5part_int64_t
nparticles
const
h5part_int64_t
nparticles
);
h5part_int64_t
H5PartWriteDataFloat64
(
H5PartFile
*
f
,
char
*
name
,
h5part_float64_t
*
array
c
onst
c
har
*
name
,
const
h5part_float64_t
*
array
);
h5part_int64_t
H5PartWriteDataInt64
(
H5PartFile
*
f
,
char
*
name
,
h5part_int64_t
*
array
c
onst
c
har
*
name
,
const
h5part_int64_t
*
array
);
/*================== File Reading Routines =================*/
h5part_int64_t
H5PartSetStep
(
H5PartFile
*
f
,
h5part_int64_t
step
const
h5part_int64_t
step
);
h5part_int64_t
...
...
@@ -124,8 +124,8 @@ H5PartGetNumParticles (
h5part_int64_t
H5PartSetView
(
H5PartFile
*
f
,
h5part_int64_t
start
,
h5part_int64_t
end
const
h5part_int64_t
start
,
const
h5part_int64_t
end
);
#define H5PartResetView(f) H5PartSetView(f,-1,-1)
...
...
@@ -146,7 +146,7 @@ H5PartSetCanonicalView (
h5part_int64_t
H5PartReadDataFloat64
(
H5PartFile
*
f
,
char
*
name
,
c
onst
c
har
*
name
,
h5part_float64_t
*
array
);
...
...
@@ -160,7 +160,7 @@ H5PartReadDataInt64 (
h5part_int64_t
H5PartReadParticleStep
(
H5PartFile
*
f
,
h5part_int64_t
step
,
const
h5part_int64_t
step
,
h5part_float64_t
*
x
,
/* particle positions */
h5part_float64_t
*
y
,
h5part_float64_t
*
z
,
...
...
@@ -243,32 +243,32 @@ H5PartGetFileAttribInfo (
h5part_int64_t
H5PartReadStepAttrib
(
H5PartFile
*
f
,
char
*
name
,
c
onst
c
har
*
name
,
void
*
data
);
h5part_int64_t
H5PartReadAttrib
(
H5PartFile
*
f
,
char
*
name
,
c
onst
c
har
*
name
,
void
*
data
);
h5part_int64_t
H5PartReadFileAttrib
(
H5PartFile
*
f
,
char
*
name
,
c
onst
c
har
*
name
,
void
*
data
);
h5part_int64_t
H5PartSetVerbosityLevel
(
h5part_int64_t
level
const
h5part_int64_t
level
);
h5part_int64_t
H5PartSetErrorHandler
(
h5part_error_handler
handler
const
h5part_error_handler
handler
);
h5part_int64_t
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment