Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Nektar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Castiglioni
Nektar
Commits
4536124f
Commit
4536124f
authored
8 years ago
by
Michael Turner
Committed by
Dave Moxey
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add std after namespace clearup
(cherry picked from commit
07f53196
)
parent
3ded9cd2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
utilities/NekMesh/InputModules/InputStar.h
+20
-20
20 additions, 20 deletions
utilities/NekMesh/InputModules/InputStar.h
with
20 additions
and
20 deletions
utilities/NekMesh/InputModules/InputStar.h
+
20
−
20
View file @
4536124f
...
@@ -64,46 +64,46 @@ public:
...
@@ -64,46 +64,46 @@ public:
void
ReadZone
(
int
&
nComposite
);
void
ReadZone
(
int
&
nComposite
);
protected
:
protected
:
void
GenElement3D
(
vector
<
NodeSharedPtr
>
&
Nodes
,
void
GenElement3D
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
,
int
i
,
int
i
,
vector
<
int
>
&
ElementFaces
,
std
::
vector
<
int
>
&
ElementFaces
,
map
<
int
,
vector
<
int
>
>
&
FaceNodes
,
std
::
map
<
int
,
std
::
vector
<
int
>
>
&
FaceNodes
,
int
ncomposite
,
int
ncomposite
,
bool
DoOrient
);
bool
DoOrient
);
void
GenElement2D
(
vector
<
NodeSharedPtr
>
&
Nodes
,
void
GenElement2D
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
,
int
i
,
int
i
,
vector
<
int
>
&
FaceNodes
,
std
::
vector
<
int
>
&
FaceNodes
,
int
ncomposite
);
int
ncomposite
);
Array
<
OneD
,
int
>
SortEdgeNodes
(
vector
<
NodeSharedPtr
>
&
Nodes
,
Array
<
OneD
,
int
>
SortEdgeNodes
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
,
vector
<
int
>
&
FaceNodes
);
std
::
vector
<
int
>
&
FaceNodes
);
Array
<
OneD
,
int
>
SortFaceNodes
(
vector
<
NodeSharedPtr
>
&
Nodes
,
Array
<
OneD
,
int
>
SortFaceNodes
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
,
vector
<
int
>
&
ElementFaces
,
std
::
vector
<
int
>
&
ElementFaces
,
map
<
int
,
vector
<
int
>
>
&
FaceNodes
);
std
::
map
<
int
,
std
::
vector
<
int
>
>
&
FaceNodes
);
void
ResetNodes
(
vector
<
NodeSharedPtr
>
&
Nodes
,
void
ResetNodes
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
,
Array
<
OneD
,
vector
<
int
>
>
&
ElementFaces
,
Array
<
OneD
,
std
::
vector
<
int
>
>
&
ElementFaces
,
map
<
int
,
vector
<
int
>
>
&
FaceNodes
);
std
::
map
<
int
,
std
::
vector
<
int
>
>
&
FaceNodes
);
private
:
private
:
CCMIOError
m_ccmErr
;
// Star CCM error flag
CCMIOError
m_ccmErr
;
// Star CCM error flag
CCMIOID
m_ccmTopology
;
// Star CCM mesh topology
CCMIOID
m_ccmTopology
;
// Star CCM mesh topology
CCMIOID
m_ccmProcessor
;
CCMIOID
m_ccmProcessor
;
map
<
int
,
string
>
m_faceLabels
;
// label from CCM into composite
std
::
map
<
int
,
std
::
string
>
m_faceLabels
;
// label from CCM into composite
void
InitCCM
(
void
);
void
InitCCM
(
void
);
void
ReadNodes
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
);
void
ReadNodes
(
std
::
vector
<
NodeSharedPtr
>
&
Nodes
);
void
ReadInternalFaces
(
map
<
int
,
vector
<
int
>
>
&
FacesNodes
,
void
ReadInternalFaces
(
std
::
map
<
int
,
std
::
vector
<
int
>
>
&
FacesNodes
,
Array
<
OneD
,
vector
<
int
>
>
&
ElementFaces
);
Array
<
OneD
,
std
::
vector
<
int
>
>
&
ElementFaces
);
void
ReadBoundaryFaces
(
vector
<
vector
<
int
>
>
&
BndElementFaces
,
void
ReadBoundaryFaces
(
std
::
vector
<
std
::
vector
<
int
>
>
&
BndElementFaces
,
map
<
int
,
vector
<
int
>
>
&
FacesNodes
,
std
::
map
<
int
,
std
::
vector
<
int
>
>
&
FacesNodes
,
Array
<
OneD
,
vector
<
int
>
>
&
ElementFaces
,
Array
<
OneD
,
std
::
vector
<
int
>
>
&
ElementFaces
,
vector
<
string
>
&
facelabels
);
std
::
vector
<
std
::
string
>
&
facelabels
);
void
SetupElements
(
void
);
void
SetupElements
(
void
);
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment