added flag for SetGhostCellAsField function

This commit is contained in:
Tushar Athawale 2022-09-05 12:26:09 -04:00
parent 72f8bb9cce
commit 7414e02b62

@ -47,7 +47,7 @@ public:
VTKM_CONT
bool GetUseGhostCellsAsField() const { return this->UseGhostCellsAsField; }
VTKM_CONT
void SetUseGhostCellsAsField() { this->UseGhostCellsAsField = true; }
void SetUseGhostCellsAsField(bool flag) { this->UseGhostCellsAsField = flag; }
VTKM_CONT
bool GetRemoveByType() const { return !this->RemoveAll; }