Skip to content

Commit

Permalink
Update "isMC" Configurable in HelperTasks.md
Browse files Browse the repository at this point in the history
Since [this PR](AliceO2Group/O2Physics#6807), isMC is no longer a bool but instead an int. Since this breaks things like "isMC" : "false" in the json configuration, I've updated the doc to reflect this change!
  • Loading branch information
rhanniga authored Sep 23, 2024
1 parent 88cd34a commit ec558bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basics-usage/HelperTasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ Event selection task supports several configurables:
* _isMC_ allows to suppress several checks for Run 2 MC, see [Event selection decisions](#event-selection-decisions):
``` c++
Configurable<bool> isMC{"isMC", 0, "0 - data, 1 - MC"};
Configurable<int> isMC{"isMC", 0, "-1 - autoset, 0 - data, 1 - MC"};
```
Note that one has to enable _isRun2MC_ flag in the timestamp task in this case:
Expand Down

0 comments on commit ec558bf

Please sign in to comment.