Skip to content

Commit ec558bf

Browse files
authored
Update "isMC" Configurable in HelperTasks.md
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!
1 parent 88cd34a commit ec558bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/basics-usage/HelperTasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ Event selection task supports several configurables:
341341
* _isMC_ allows to suppress several checks for Run 2 MC, see [Event selection decisions](#event-selection-decisions):
342342
343343
``` c++
344-
Configurable<bool> isMC{"isMC", 0, "0 - data, 1 - MC"};
344+
Configurable<int> isMC{"isMC", 0, "-1 - autoset, 0 - data, 1 - MC"};
345345
```
346346
347347
Note that one has to enable _isRun2MC_ flag in the timestamp task in this case:

0 commit comments

Comments
 (0)