Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
Visualization
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
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
Modules
Visualization
Commits
fd89cf4b
Commit
fd89cf4b
authored
Jan 20, 2020
by
Mark Olesen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENH: set InfoDetail level = 0 for paraview plugins (reduces some output)
parent
d534b220
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
8 deletions
+13
-8
src/paraview-plugins/blockMeshReader/library/vtkPVblockMesh.C
...paraview-plugins/blockMeshReader/library/vtkPVblockMesh.C
+5
-1
src/paraview-plugins/blockMeshReader/library/vtkPVblockMesh.H
...paraview-plugins/blockMeshReader/library/vtkPVblockMesh.H
+2
-4
src/paraview-plugins/foamReader/library/vtkPVFoam.C
src/paraview-plugins/foamReader/library/vtkPVFoam.C
+5
-1
src/paraview-plugins/foamReader/library/vtkPVFoam.H
src/paraview-plugins/foamReader/library/vtkPVFoam.H
+1
-2
No files found.
src/paraview-plugins/blockMeshReader/library/vtkPVblockMesh.C
View file @
fd89cf4b
...
...
@@ -183,9 +183,13 @@ Foam::vtkPVblockMesh::vtkPVblockMesh
rangeEdges_
(
"edges"
),
rangeCorners_
(
"corners"
)
{
// Reduce some output
::
Foam
::
infoDetailLevel
=
0
;
DebugInfo
<<
"vtkPVblockMesh - "
<<
FileName
<<
endl
;
// avoid argList and get rootPath/caseName directly from the file
// Avoid argList (possible side-effects)
// - get rootPath/caseName directly from the file
fileName
fullCasePath
(
fileName
(
FileName
).
path
());
if
(
!
isDir
(
fullCasePath
))
...
...
src/paraview-plugins/blockMeshReader/library/vtkPVblockMesh.H
View file @
fd89cf4b
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2017 OpenCFD Ltd.
Copyright (C) 2017
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -71,11 +71,9 @@ template<class T> class vtkSmartPointer;
namespace
Foam
{
// OpenFOAM class forward declarations
class
argList
;
// Forward Declarations (OpenFOAM)
class
Time
;
class
blockMesh
;
template
<
class
Type
>
class
List
;
/*---------------------------------------------------------------------------*\
...
...
src/paraview-plugins/foamReader/library/vtkPVFoam.C
View file @
fd89cf4b
...
...
@@ -296,6 +296,9 @@ Foam::vtkPVFoam::vtkPVFoam
rangeFaceSets_
(
"faceSet"
),
rangePointSets_
(
"pointSet"
)
{
// Reduce some output
::
Foam
::
infoDetailLevel
=
0
;
if
(
debug
)
{
Info
<<
"vtkPVFoam - "
<<
vtkFileName
<<
nl
;
...
...
@@ -304,7 +307,8 @@ Foam::vtkPVFoam::vtkPVFoam
fileName
FileName
(
vtkFileName
);
// avoid argList and get rootPath/caseName directly from the file
// Avoid argList (possible side-effects)
// - get rootPath/caseName directly from the file
fileName
fullCasePath
(
FileName
.
path
());
if
(
!
isDir
(
fullCasePath
))
...
...
src/paraview-plugins/foamReader/library/vtkPVFoam.H
View file @
fd89cf4b
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2017-20
19
OpenCFD Ltd.
Copyright (C) 2017-20
20
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -94,7 +94,6 @@ namespace Foam
{
// Forward Declarations (OpenFOAM)
class
argList
;
class
Time
;
class
faMesh
;
class
fvMesh
;
...
...
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