From ec558bfa4ca7eb3547dc2d6b4239bb3df8758764 Mon Sep 17 00:00:00 2001 From: Ryan Hannigan <32146461+rhanniga@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:52:06 +0200 Subject: [PATCH] Update "isMC" Configurable in HelperTasks.md Since [this PR](https://github.com/AliceO2Group/O2Physics/pull/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! --- docs/basics-usage/HelperTasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics-usage/HelperTasks.md b/docs/basics-usage/HelperTasks.md index ca8ec10..ef793b3 100644 --- a/docs/basics-usage/HelperTasks.md +++ b/docs/basics-usage/HelperTasks.md @@ -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 isMC{"isMC", 0, "0 - data, 1 - MC"}; + Configurable isMC{"isMC", 0, "-1 - autoset, 0 - data, 1 - MC"}; ``` Note that one has to enable _isRun2MC_ flag in the timestamp task in this case: