Union¶
- class hoomd.filter.Union(f, g)¶
Set union operation.
- Parameters:
f (ParticleFilter) – First set in the union.
g (ParticleFilter) – Second set in the union.
Union
is a composite filter. It selects particles in the set union \(f \cup g\).Example:
union = hoomd.filter.Union(filter1, filter2)
Members inherited from
ParticleFilter
:- __hash__()¶
Return a hash of the filter parameters.
Read more...
- __eq__()¶
Test for equality between two particle filters.
Read more...
- __str__()¶
Format a human readable string describing the filter.
Read more...
- __call__()¶
Evaluate the filter.
Read more...