Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Timo Koch
dune-common
Commits
dbdb868a
Commit
dbdb868a
authored
19 years ago
by
Adrian Burri
Browse files
Options
Downloads
Patches
Plain Diff
Removed DofManager template argument
[[Imported from SVN: r2752]]
parent
725c93fa
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
fem/transfer/datacollector.hh
+18
-16
18 additions, 16 deletions
fem/transfer/datacollector.hh
with
18 additions
and
16 deletions
fem/transfer/datacollector.hh
+
18
−
16
View file @
dbdb868a
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef
__
DUNE_DATACOLLECTOR_HH
__
#define
__
DUNE_DATACOLLECTOR_HH
__
#ifndef DUNE_DATACOLLECTOR_HH
#define DUNE_DATACOLLECTOR_HH
#include
<vector>
#include
<dune/fem/common/objpointer.hh>
#include
<dune/fem/dofmanager.hh>
namespace
Dune
{
...
...
@@ -351,14 +352,15 @@ namespace Dune {
* does the hierarhic walk and calls its local pack operators which know
* the discrete functions to pack to the stream.
*/
template
<
class
GridType
,
class
LocalDataCollectImp
,
class
DofManagerType
>
template
<
class
GridType
,
class
LocalDataCollectImp
>
class
DataCollector
:
public
DataCollectorInterface
<
GridType
,
typename
GridType
::
ObjectStreamType
>
,
public
ObjPointerStorage
{
typedef
typename
GridType
::
template
Codim
<
0
>
::
Entity
EntityType
;
typedef
DataCollector
<
EntityType
,
LocalDataCollectImp
,
DofManagerType
>
MyType
;
typedef
DataCollector
<
EntityType
,
LocalDataCollectImp
>
MyType
;
typedef
typename
GridType
::
ObjectStreamType
ObjectStreamType
;
typedef
DofManager
<
GridType
>
DofManagerType
;
typedef
typename
std
::
pair
<
ObjectStreamType
*
,
const
EntityType
*
>
ParamType
;
typedef
LocalInterface
<
ParamType
>
LocalInterfaceType
;
...
...
@@ -377,14 +379,14 @@ namespace Dune {
//! operator + (combine this operator) and return new Object
template
<
class
LocalDataCollectType
>
DataCollector
<
GridType
,
CombinedLocalDataCollect
<
LocalDataCollectImp
,
LocalDataCollectType
>
,
DofManagerType
>
&
operator
+
(
const
DataCollector
<
GridType
,
LocalDataCollectType
,
DofManagerType
>
&
op
)
CombinedLocalDataCollect
<
LocalDataCollectImp
,
LocalDataCollectType
>
>
&
operator
+
(
const
DataCollector
<
GridType
,
LocalDataCollectType
>
&
op
)
{
typedef
DataCollector
<
GridType
,
LocalDataCollectType
,
DofManagerType
>
CopyType
;
typedef
DataCollector
<
GridType
,
LocalDataCollectType
>
CopyType
;
typedef
CombinedLocalDataCollect
<
LocalDataCollectImp
,
LocalDataCollectType
>
COType
;
COType
*
newLDCOp
=
new
COType
(
ldc_
,
const_cast
<
CopyType
&>
(
op
).
getLocalOp
()
);
typedef
DataCollector
<
GridType
,
COType
,
DofManagerType
>
OPType
;
typedef
DataCollector
<
GridType
,
COType
>
OPType
;
OPType
*
dcOp
=
new
OPType
(
grid_
,
dm_
,
*
newLDCOp
,
read_
);
...
...
@@ -397,14 +399,14 @@ namespace Dune {
//! oeprator += combine and return this Object
template
<
class
LocalDataCollectType
>
DataCollector
<
GridType
,
LocalInterface
<
ParamType
>
,
DofManagerType
>
&
operator
+=
(
const
DataCollector
<
GridType
,
LocalDataCollectType
,
DofManagerType
>
&
op
)
DataCollector
<
GridType
,
LocalInterface
<
ParamType
>
>
&
operator
+=
(
const
DataCollector
<
GridType
,
LocalDataCollectType
>
&
op
)
{
typedef
DataCollector
<
GridType
,
LocalDataCollectType
,
DofManagerType
>
CopyType
;
typedef
DataCollector
<
GridType
,
LocalDataCollectType
>
CopyType
;
typedef
LocalInterface
<
ParamType
>
COType
;
COType
*
newLDCOp
=
new
COType
(
ldc_
+
op
.
getLocalOp
()
);
typedef
DataCollector
<
GridType
,
COType
,
DofManagerType
>
OPType
;
typedef
DataCollector
<
GridType
,
COType
>
OPType
;
OPType
*
dcOp
=
new
OPType
(
grid_
,
dm_
,
*
newLDCOp
,
read_
);
...
...
@@ -421,10 +423,10 @@ namespace Dune {
{
std
::
cout
<<
"operator += with Interface Type
\n
"
;
typedef
LocalInterface
<
ParamType
>
COType
;
typedef
DataCollector
<
GridType
,
COType
,
DofManagerType
>
CopyType
;
typedef
DataCollector
<
GridType
,
COType
>
CopyType
;
COType
*
newLDCOp
=
new
COType
(
ldc_
+
op
.
getLocalInterfaceOp
()
);
typedef
DataCollector
<
GridType
,
COType
,
DofManagerType
>
OPType
;
typedef
DataCollector
<
GridType
,
COType
>
OPType
;
OPType
*
dcOp
=
new
OPType
(
grid_
,
dm_
,
*
newLDCOp
,
read_
);
...
...
@@ -492,12 +494,12 @@ namespace Dune {
}
private
:
DataCollector
<
GridType
,
LocalInterface
<
ParamType
>
,
DofManagerType
>
*
convert
()
DataCollector
<
GridType
,
LocalInterface
<
ParamType
>
>
*
convert
()
{
typedef
LocalInterface
<
ParamType
>
COType
;
COType
*
newLDCOp
=
new
COType
(
ldc_
);
typedef
DataCollector
<
GridType
,
COType
,
DofManagerType
>
OPType
;
typedef
DataCollector
<
GridType
,
COType
>
OPType
;
OPType
*
dcOp
=
new
OPType
(
grid_
,
dm_
,
*
newLDCOp
,
read_
);
...
...
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