Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
cf0a288e
Commit
cf0a288e
authored
Jun 12, 2018
by
Mark OLESEN
Browse files
STYLE: typo in copyright dates
parent
071d5612
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/global/profiling/profilingInformation.H
View file @
cf0a288e
...
...
@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2009-2016 Bernhard Gschaider
\\/ M anipulation | Copyright (C) 2016-2
1
07 OpenCFD Ltd.
\\/ M anipulation | Copyright (C) 2016-20
1
7 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
src/conversion/vtk/output/foamVtkOutputFields.H
View file @
cf0a288e
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2016-2
1
07 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2016-20
1
7 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
src/conversion/vtk/output/foamVtkOutputFieldsTemplates.C
View file @
cf0a288e
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2016-2
1
07 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2016-20
1
7 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
src/fileFormats/vtk/output/foamVtkOutput.H
View file @
cf0a288e
...
...
@@ -59,9 +59,7 @@ namespace vtk
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Constants
// General Functions
// General Functions
//- Return a default asciiFormatter
autoPtr
<
vtk
::
formatter
>
newFormatter
(
std
::
ostream
&
os
);
...
...
@@ -94,7 +92,7 @@ namespace vtk
void
writeList
(
vtk
::
formatter
&
fmt
,
const
UList
<
Type
>&
lst
const
UList
<
Type
>&
l
i
st
);
//- Write a list of values.
...
...
@@ -103,7 +101,7 @@ namespace vtk
void
writeList
(
vtk
::
formatter
&
fmt
,
const
FixedList
<
Type
,
Size
>&
lst
const
FixedList
<
Type
,
Size
>&
l
i
st
);
...
...
@@ -113,7 +111,7 @@ namespace vtk
void
writeList
(
vtk
::
formatter
&
fmt
,
const
UList
<
Type
>&
lst
,
const
UList
<
Type
>&
l
i
st
,
const
labelUList
&
addressing
);
...
...
@@ -126,7 +124,7 @@ namespace vtk
namespace
legacy
{
// Constants
// Constants
//- Strings corresponding to the (POLYDATA, UNSTRUCTURED_GRID) elements
extern
const
Foam
::
Enum
<
vtk
::
fileTag
>
contentNames
;
...
...
@@ -135,7 +133,7 @@ namespace legacy
extern
const
Foam
::
Enum
<
vtk
::
fileTag
>
dataTypeNames
;
// Functions
// Functions
//- Emit header for legacy file.
// Writes "ASCII" or "BINARY" depending on specified type.
...
...
src/fileFormats/vtk/output/foamVtkOutputTemplates.C
View file @
cf0a288e
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2016-2
1
07 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2016-20
1
7 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -44,12 +44,12 @@ template<class Type>
void
Foam
::
vtk
::
writeList
(
vtk
::
formatter
&
fmt
,
const
UList
<
Type
>&
lst
const
UList
<
Type
>&
l
i
st
)
{
for
All
(
lst
,
i
)
for
(
const
Type
&
val
:
list
)
{
write
(
fmt
,
lst
[
i
]
);
write
(
fmt
,
val
);
}
}
...
...
@@ -58,12 +58,12 @@ template<class Type, unsigned Size>
void
Foam
::
vtk
::
writeList
(
vtk
::
formatter
&
fmt
,
const
FixedList
<
Type
,
Size
>&
lst
const
FixedList
<
Type
,
Size
>&
l
i
st
)
{
for
(
unsigned
i
=
0
;
i
<
Size
;
++
i
)
for
(
const
Type
&
val
:
list
)
{
write
(
fmt
,
lst
[
i
]
);
write
(
fmt
,
val
);
}
}
...
...
@@ -72,13 +72,13 @@ template<class Type>
void
Foam
::
vtk
::
writeList
(
vtk
::
formatter
&
fmt
,
const
UList
<
Type
>&
lst
,
const
UList
<
Type
>&
l
i
st
,
const
labelUList
&
addressing
)
{
for
All
(
addressing
,
i
)
for
(
const
label
idx
:
addressing
)
{
write
(
fmt
,
lst
[
addressing
[
i
]
]);
write
(
fmt
,
l
i
st
[
idx
]);
}
}
...
...
src/surfMesh/surfaceFormats/vtk/VTKsurfaceFormat.C
View file @
cf0a288e
...
...
@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2016-2
1
07 OpenCFD Ltd.
\\/ M anipulation | Copyright (C) 2016-20
1
7 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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