Skip to content

Commit

Permalink
Merge pull request #236 from saganatt/filter-fix
Browse files Browse the repository at this point in the history
Fixed missing "` `" for code
  • Loading branch information
ddobrigk authored Oct 10, 2023
2 parents 0332722 + fd978fc commit 9ee1a91
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 9ee1a91

Please sign in to comment.