v0.14.0
Public Member Functions | Public Attributes | List of all members
MoFEM::NumeredDofEntity_part_and_indices_change Struct Reference

#include <src/multi_indices/DofsMultiIndices.hpp>

Collaboration diagram for MoFEM::NumeredDofEntity_part_and_indices_change:
[legend]

Public Member Functions

 NumeredDofEntity_part_and_indices_change (const unsigned int part, const DofIdx petsc_gloabl_dof_idx, const DofIdx petsc_local_dof_idx)
 
void operator() (boost::shared_ptr< NumeredDofEntity > &dof) const
 

Public Attributes

const unsigned int pArt
 
const DofIdx petscGloablDofIdx
 
const DofIdx petscLocalDofIdx
 

Detailed Description

Definition at line 564 of file DofsMultiIndices.hpp.

Constructor & Destructor Documentation

◆ NumeredDofEntity_part_and_indices_change()

MoFEM::NumeredDofEntity_part_and_indices_change::NumeredDofEntity_part_and_indices_change ( const unsigned int  part,
const DofIdx  petsc_gloabl_dof_idx,
const DofIdx  petsc_local_dof_idx 
)
inline

Definition at line 568 of file DofsMultiIndices.hpp.

571  : pArt(part), petscGloablDofIdx(petsc_gloabl_dof_idx),
572  petscLocalDofIdx(petsc_local_dof_idx){};

Member Function Documentation

◆ operator()()

void MoFEM::NumeredDofEntity_part_and_indices_change::operator() ( boost::shared_ptr< NumeredDofEntity > &  dof) const
inline

Definition at line 573 of file DofsMultiIndices.hpp.

573  {
574  dof->pArt = pArt;
575  dof->petscGloablDofIdx = petscGloablDofIdx;
576  dof->petscLocalDofIdx = petscLocalDofIdx;
577  }

Member Data Documentation

◆ pArt

const unsigned int MoFEM::NumeredDofEntity_part_and_indices_change::pArt

Definition at line 565 of file DofsMultiIndices.hpp.

◆ petscGloablDofIdx

const DofIdx MoFEM::NumeredDofEntity_part_and_indices_change::petscGloablDofIdx

Definition at line 566 of file DofsMultiIndices.hpp.

◆ petscLocalDofIdx

const DofIdx MoFEM::NumeredDofEntity_part_and_indices_change::petscLocalDofIdx

Definition at line 567 of file DofsMultiIndices.hpp.


The documentation for this struct was generated from the following file:
MoFEM::NumeredDofEntity_part_and_indices_change::petscGloablDofIdx
const DofIdx petscGloablDofIdx
Definition: DofsMultiIndices.hpp:566
MoFEM::NumeredDofEntity_part_and_indices_change::petscLocalDofIdx
const DofIdx petscLocalDofIdx
Definition: DofsMultiIndices.hpp:567
MoFEM::NumeredDofEntity_part_and_indices_change::pArt
const unsigned int pArt
Definition: DofsMultiIndices.hpp:565