Skip to content

Commit

Permalink
Fixed missing
Browse files Browse the repository at this point in the history
  • Loading branch information
saganatt committed Oct 10, 2023
1 parent 0332722 commit fd978fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basics-tasks/FilteringPartitioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ i.e. `Filter` is applied to the objects before passing them to the `process` met
## Filtering and partitioning together
It is also possible to filter and partition data in the same task. Therefore, multiple `Filter`s are combined using the logical `AND`. These filters then are combined by a logical `AND` with all the specified selections `Select`, which themself are combined by logical `OR`s. E.g. (Filter1 && Filter2) && (Select1 || Select2).
It is also possible to filter and partition data in the same task. Therefore, multiple `Filter`s are combined using the logical `AND`. These filters then are combined by a logical `AND` with all the specified selections `Select`, which themself are combined by logical `OR`s. E.g., `(Filter1 && Filter2) && (Select1 || Select2)`.
```cpp
using namespace o2::aod;
Expand Down

0 comments on commit fd978fc

Please sign in to comment.