Skip to content

Commit

Permalink
Set sidesets and subdomains in MeshInfo to root
Browse files Browse the repository at this point in the history
  • Loading branch information
loganharbour committed Apr 29, 2021
1 parent 1d82ee4 commit bfdc8cd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions framework/src/reporters/MeshInfo.C
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,16 @@ MeshInfo::MeshInfo(const InputParameters & parameters)
REPORTER_MODE_DISTRIBUTED)),
_local_sideset_elems(declareHelper<std::map<BoundaryID, SidesetInfo>>(
"local_sideset_elems", REPORTER_MODE_DISTRIBUTED)),
_sidesets(
declareHelper<std::map<BoundaryID, SidesetInfo>>("sidesets", REPORTER_MODE_REPLICATED)),
_sidesets(declareHelper<std::map<BoundaryID, SidesetInfo>>("sidesets", REPORTER_MODE_ROOT)),
_sideset_elems(
declareHelper<std::map<BoundaryID, SidesetInfo>>("sideset_elems", REPORTER_MODE_ROOT)),

_local_subdomains(declareHelper<std::map<SubdomainID, SubdomainInfo>>(
"local_subdomains", REPORTER_MODE_DISTRIBUTED)),
_local_subdomain_elems(declareHelper<std::map<SubdomainID, SubdomainInfo>>(
"local_subdomain_elems", REPORTER_MODE_DISTRIBUTED)),
_subdomains(declareHelper<std::map<SubdomainID, SubdomainInfo>>("subdomains",
REPORTER_MODE_REPLICATED)),
_subdomains(
declareHelper<std::map<SubdomainID, SubdomainInfo>>("subdomains", REPORTER_MODE_ROOT)),
_subdomain_elems(
declareHelper<std::map<SubdomainID, SubdomainInfo>>("subdomain_elems", REPORTER_MODE_ROOT)),

Expand Down

0 comments on commit bfdc8cd

Please sign in to comment.