Sets file overwritting.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(ResPart_set), | intent(inout) | :: | this |
Set of resolved particles |
||
| logical, | intent(in) | :: | overwrite |
Overwrite value |
pure subroutine ResPart_set_SetOverwrite(this,overwrite) !> Sets file overwritting. implicit none class(ResPart_set), intent(inout) :: this !! Set of resolved particles logical, intent(in) :: overwrite !! Overwrite value ! Set flag for centroids this%overwrite=overwrite ! Set flag for ib call this%ib%SetOverWrite(overwrite) return end subroutine ResPart_set_SetOverwrite