From a07b940cffa82805f3e873c41518828b266615c8 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 7 Jul 2021 12:22:01 +0200 Subject: [PATCH 01/64] create dev branch --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 20e45f48..e6c95c9f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,9 @@ *.pdf *.log report/ +/.vs/slnx.sqlite +/.vs/Run3Analysisvalidation/v16/Browse.VC.opendb +/.vs/Run3Analysisvalidation/v16/Browse.VC.db-wal +/.vs/Run3Analysisvalidation/v16/Browse.VC.db-shm +/.vs/Run3Analysisvalidation/v16/Browse.VC.db +/.vs/ProjectSettings.json From e1111315369083e5deb7f5b32533596b57e18958 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 7 Jul 2021 16:00:54 +0200 Subject: [PATCH 02/64] update settings for Lc test --- .gitignore | 1 + codeHF/config_input.sh | 2 +- codeHF/config_tasks.sh | 10 +++++----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index e6c95c9f..84b808f2 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ report/ /.vs/Run3Analysisvalidation/v16/Browse.VC.db-shm /.vs/Run3Analysisvalidation/v16/Browse.VC.db /.vs/ProjectSettings.json +/.vs/Run3Analysisvalidation/v16 diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 5e499940..0ac465b7 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -4,7 +4,7 @@ # Input specification for runtest.sh # (Modifies input parameters.) -INPUT_CASE=2 # Input case +INPUT_CASE=10 # Input case NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 59536714..0022c13c 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -16,9 +16,9 @@ # Steps DOCLEAN=1 # Delete created files (before and after running tasks). DOCONVERT=1 # Convert AliESDs.root to AO2D.root. -DOALI=1 # Run AliPhysics tasks. +DOALI=0 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. -DOPOSTPROCESS=1 # Run output postprocessing. (Compare AliPhysics and O2 output.) +DOPOSTPROCESS=0 # Run output postprocessing. (Compare AliPhysics and O2 output.) # Disable incompatible steps. [ "$ISINPUTO2" -eq 1 ] && { DOCONVERT=0; DOALI=0; } @@ -51,17 +51,17 @@ DOO2_SEL_XIC=0 # hf-xic-topkpi-candidate-selector DOO2_SEL_JPSI=0 # hf-jpsi-toee-candidate-selector DOO2_SEL_LCK0SP=0 # hf-lc-tok0sp-candidate-selector # User tasks -DOO2_TASK_D0=1 # hf-task-d0 +DOO2_TASK_D0=0 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus DOO2_TASK_LC=0 # hf-task-lc DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus DOO2_TASK_X=0 # hf-task-x -DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp +DOO2_TASK_LCK0SP=1 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi -DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi +DOO2_TREE_LC=1 # hf-tree-creator-lc-topkpi # Selection cuts APPLYCUTS_D0=0 # Apply D0 selection cuts. From b7fdfb8b84b665846a985c1e7042bc29d5556748 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 7 Jul 2021 16:36:41 +0200 Subject: [PATCH 03/64] update config to new input folder --- codeHF/config_input.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 0ac465b7..bfc2a1c1 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -4,7 +4,7 @@ # Input specification for runtest.sh # (Modifies input parameters.) -INPUT_CASE=10 # Input case +INPUT_CASE=12 # Input case NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) @@ -86,4 +86,11 @@ case $INPUT_CASE in JSON="$JSONRUN5_HF" ISINPUTO2=1 ISMC=1;; + 12) + INPUT_LABEL="Run 5, p-p MC 14 TeV LctopKpi-enriched, Scenario 3, HF analysis" + INPUT_DIR="/home/mjongerh/alice/AODtest" + INPUT_FILES="AODRun5.*.root" + JSON="$JSONRUN5_HF" + ISINPUTO2=1 + ISMC=1;; esac From 5492cb128f80cc04fb89aabc56ced882727b2e4b Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 7 Jul 2021 16:47:48 +0200 Subject: [PATCH 04/64] update settings --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 0022c13c..2c5ed91b 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -15,7 +15,7 @@ # Steps DOCLEAN=1 # Delete created files (before and after running tasks). -DOCONVERT=1 # Convert AliESDs.root to AO2D.root. +DOCONVERT=0 # Convert AliESDs.root to AO2D.root. DOALI=0 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. DOPOSTPROCESS=0 # Run output postprocessing. (Compare AliPhysics and O2 output.) @@ -61,7 +61,7 @@ DOO2_TASK_X=0 # hf-task-x DOO2_TASK_LCK0SP=1 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi -DOO2_TREE_LC=1 # hf-tree-creator-lc-topkpi +DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi # Selection cuts APPLYCUTS_D0=0 # Apply D0 selection cuts. From 77867305ab489c3561566a93db729c72529ec29d Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 7 Jul 2021 17:09:03 +0200 Subject: [PATCH 05/64] update config --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 2c5ed91b..5af26246 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -58,7 +58,7 @@ DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus DOO2_TASK_X=0 # hf-task-x -DOO2_TASK_LCK0SP=1 # hf-task-lc-tok0sp +DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi From cfd21a848ec6c302bc7e7e5db9b83723f1e7d20e Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 8 Jul 2021 11:09:54 +0200 Subject: [PATCH 06/64] update config for test --- .gitignore | 1 + codeHF/config_tasks.sh | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 84b808f2..e20c24d5 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ report/ /.vs/Run3Analysisvalidation/v16/Browse.VC.db /.vs/ProjectSettings.json /.vs/Run3Analysisvalidation/v16 +/.vs/VSWorkspaceState.json diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 5af26246..1e40745e 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -15,10 +15,10 @@ # Steps DOCLEAN=1 # Delete created files (before and after running tasks). -DOCONVERT=0 # Convert AliESDs.root to AO2D.root. -DOALI=0 # Run AliPhysics tasks. +DOCONVERT=1 # Convert AliESDs.root to AO2D.root. +DOALI=1 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. -DOPOSTPROCESS=0 # Run output postprocessing. (Compare AliPhysics and O2 output.) +DOPOSTPROCESS=1 # Run output postprocessing. (Compare AliPhysics and O2 output.) # Disable incompatible steps. [ "$ISINPUTO2" -eq 1 ] && { DOCONVERT=0; DOALI=0; } @@ -58,7 +58,7 @@ DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus DOO2_TASK_X=0 # hf-task-x -DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp +DOO2_TASK_LCK0SP=1 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi From 4cdbaffd148c36b6fcaa4797e9884336e5dbcb15 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 8 Jul 2021 11:35:25 +0200 Subject: [PATCH 07/64] update config --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 1e40745e..5c411fd9 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -53,12 +53,12 @@ DOO2_SEL_LCK0SP=0 # hf-lc-tok0sp-candidate-selector # User tasks DOO2_TASK_D0=0 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus -DOO2_TASK_LC=0 # hf-task-lc +DOO2_TASK_LC=1 # hf-task-lc DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus DOO2_TASK_X=0 # hf-task-x -DOO2_TASK_LCK0SP=1 # hf-task-lc-tok0sp +DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi From 4248c22ca92b306113b63fbde352f1a508905ae2 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 8 Jul 2021 12:58:14 +0200 Subject: [PATCH 08/64] update config --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 5c411fd9..59536714 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -51,9 +51,9 @@ DOO2_SEL_XIC=0 # hf-xic-topkpi-candidate-selector DOO2_SEL_JPSI=0 # hf-jpsi-toee-candidate-selector DOO2_SEL_LCK0SP=0 # hf-lc-tok0sp-candidate-selector # User tasks -DOO2_TASK_D0=0 # hf-task-d0 +DOO2_TASK_D0=1 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus -DOO2_TASK_LC=1 # hf-task-lc +DOO2_TASK_LC=0 # hf-task-lc DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus From f2ea676eefd7fc94b011dbb60cccd24189389abd Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 8 Jul 2021 13:05:54 +0200 Subject: [PATCH 09/64] update config --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index bfc2a1c1..820f6a22 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -4,7 +4,7 @@ # Input specification for runtest.sh # (Modifies input parameters.) -INPUT_CASE=12 # Input case +INPUT_CASE=2 # Input case NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) From b8023afb2682ed7a3af62df89466be438e6f0b3e Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 8 Jul 2021 13:09:32 +0200 Subject: [PATCH 10/64] update --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 820f6a22..bfc2a1c1 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -4,7 +4,7 @@ # Input specification for runtest.sh # (Modifies input parameters.) -INPUT_CASE=2 # Input case +INPUT_CASE=12 # Input case NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) From d665ccbe33e97dd91605065b396e9c0ee1ed2ce8 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 13:03:46 +0200 Subject: [PATCH 11/64] update config --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 59536714..5c411fd9 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -51,9 +51,9 @@ DOO2_SEL_XIC=0 # hf-xic-topkpi-candidate-selector DOO2_SEL_JPSI=0 # hf-jpsi-toee-candidate-selector DOO2_SEL_LCK0SP=0 # hf-lc-tok0sp-candidate-selector # User tasks -DOO2_TASK_D0=1 # hf-task-d0 +DOO2_TASK_D0=0 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus -DOO2_TASK_LC=0 # hf-task-lc +DOO2_TASK_LC=1 # hf-task-lc DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus From b3672fc255a67322e329cf4fa2fc5efddcbbe58a Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 13:11:25 +0200 Subject: [PATCH 12/64] update config --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 5c411fd9..cc20befc 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -175,7 +175,7 @@ function MakeScriptO2 { [ $DOO2_TASK_D0 -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-d0" [ $DOO2_TASK_JPSI -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-jpsi" [ $DOO2_TASK_DPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-dplus" - [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc" + [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc --doMC" [ $DOO2_TASK_XIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-xic" [ $DOO2_TASK_BPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-bplus" [ $DOO2_TASK_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-x" From 6d44db5fdde98ea21cef1c89a3955d98338abd74 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 13:14:05 +0200 Subject: [PATCH 13/64] update --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index cc20befc..dc1bac57 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -175,7 +175,7 @@ function MakeScriptO2 { [ $DOO2_TASK_D0 -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-d0" [ $DOO2_TASK_JPSI -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-jpsi" [ $DOO2_TASK_DPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-dplus" - [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc --doMC" + [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc --doMC false" [ $DOO2_TASK_XIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-xic" [ $DOO2_TASK_BPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-bplus" [ $DOO2_TASK_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-x" From 9ec67a11b93bbb44bf68c93ff2e982a6e9e21526 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 14:03:23 +0200 Subject: [PATCH 14/64] update config --- codeHF/config_input.sh | 2 +- codeHF/config_tasks.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index bfc2a1c1..a68e8671 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -92,5 +92,5 @@ case $INPUT_CASE in INPUT_FILES="AODRun5.*.root" JSON="$JSONRUN5_HF" ISINPUTO2=1 - ISMC=1;; + ISMC=0;; esac diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index dc1bac57..5c411fd9 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -175,7 +175,7 @@ function MakeScriptO2 { [ $DOO2_TASK_D0 -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-d0" [ $DOO2_TASK_JPSI -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-jpsi" [ $DOO2_TASK_DPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-dplus" - [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc --doMC false" + [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc" [ $DOO2_TASK_XIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-xic" [ $DOO2_TASK_BPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-bplus" [ $DOO2_TASK_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-x" From f8b63ff6ac6c99f09a9ec8b409205effa8b2c5e6 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 15:19:12 +0200 Subject: [PATCH 15/64] update config --- codeHF/config_input.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index a68e8671..1f34099a 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -88,9 +88,9 @@ case $INPUT_CASE in ISMC=1;; 12) INPUT_LABEL="Run 5, p-p MC 14 TeV LctopKpi-enriched, Scenario 3, HF analysis" - INPUT_DIR="/home/mjongerh/alice/AODtest" + INPUT_DIR="/home/mmazzill/pp14TeV_ccbarLc_20M_v1_04072021" INPUT_FILES="AODRun5.*.root" JSON="$JSONRUN5_HF" ISINPUTO2=1 - ISMC=0;; + ISMC=1;; esac From ecc5bb9f725298633819e2215a5b4d3831e380b6 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 15:56:17 +0200 Subject: [PATCH 16/64] update config --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 5c411fd9..4b23b7c9 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -71,7 +71,7 @@ APPLYCUTS_XIC=0 # Apply Ξc selection cuts. APPLYCUTS_JPSI=0 # Apply J/ψ selection cuts. APPLYCUTS_LCK0SP=0 # Apply Λc → K0S p selection cuts. -SAVETREES=0 # Save O2 tables to trees. +SAVETREES=1 # Save O2 tables to trees. USEO2VERTEXER=0 # Use the O2 vertexer in AliPhysics. DORATIO=0 # Plot histogram ratios in comparison. From d4b3c1aa1e71517758bfd87b680b1ae05a57ce60 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 9 Jul 2021 16:12:42 +0200 Subject: [PATCH 17/64] update config --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 4b23b7c9..cd4772eb 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -61,7 +61,7 @@ DOO2_TASK_X=0 # hf-task-x DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi -DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi +DOO2_TREE_LC=1 # hf-tree-creator-lc-topkpi # Selection cuts APPLYCUTS_D0=0 # Apply D0 selection cuts. From cbdb932ac446ede5b9f6bd1d3dd008119290008c Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Mon, 12 Jul 2021 16:39:15 +0200 Subject: [PATCH 18/64] update config --- codeHF/clean.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/codeHF/clean.sh b/codeHF/clean.sh index e8a6c872..bc19e3e9 100644 --- a/codeHF/clean.sh +++ b/codeHF/clean.sh @@ -22,6 +22,7 @@ MC_jpsi_eff.pdf MC_jpsi_pT.pdf \ MC_lc-tok0sP_eff.pdf MC_lc-tok0sP_pT.pdf \ ./*.log \ output_* \ +LcMC_TreeTest.root \ || { echo "Error: Failed to delete files."; exit 1; } exit 0 From 9f88c55afefea7d739da7cb29ba25bac363a9584 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Mon, 12 Jul 2021 16:47:38 +0200 Subject: [PATCH 19/64] undo --- codeHF/clean.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/codeHF/clean.sh b/codeHF/clean.sh index bc19e3e9..e8a6c872 100644 --- a/codeHF/clean.sh +++ b/codeHF/clean.sh @@ -22,7 +22,6 @@ MC_jpsi_eff.pdf MC_jpsi_pT.pdf \ MC_lc-tok0sP_eff.pdf MC_lc-tok0sP_pT.pdf \ ./*.log \ output_* \ -LcMC_TreeTest.root \ || { echo "Error: Failed to delete files."; exit 1; } exit 0 From 4ef3352bfc1d73763a7815a4b05f31d58a687b29 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 15 Jul 2021 13:26:03 +0200 Subject: [PATCH 20/64] update --- exec/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/runtest.sh b/exec/runtest.sh index c73f223f..b67ceaaf 100644 --- a/exec/runtest.sh +++ b/exec/runtest.sh @@ -58,7 +58,7 @@ FILEOUT_TREES_O2="AnalysisResults_trees_O2.root" # Steering commands ENVALI="alienv setenv AliPhysics/latest -c" -ENVO2="alienv setenv O2/latest -c" +ENVO2="alienv setenv O2/latest-o2 -c" ENVPOST="alienv setenv ROOT/latest -c" # Step scripts From 4477ff26667c85e78a64a61e8ab42991aba1e32d Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 16 Jul 2021 16:43:19 +0200 Subject: [PATCH 21/64] update --- exec/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/runtest.sh b/exec/runtest.sh index b67ceaaf..c73f223f 100644 --- a/exec/runtest.sh +++ b/exec/runtest.sh @@ -58,7 +58,7 @@ FILEOUT_TREES_O2="AnalysisResults_trees_O2.root" # Steering commands ENVALI="alienv setenv AliPhysics/latest -c" -ENVO2="alienv setenv O2/latest-o2 -c" +ENVO2="alienv setenv O2/latest -c" ENVPOST="alienv setenv ROOT/latest -c" # Step scripts From 9ce92b30ab5bb435763b18fcfb357f2ece4e4406 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Fri, 16 Jul 2021 16:55:12 +0200 Subject: [PATCH 22/64] update --- exec/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/runtest.sh b/exec/runtest.sh index c73f223f..8a2d7b2b 100644 --- a/exec/runtest.sh +++ b/exec/runtest.sh @@ -58,7 +58,7 @@ FILEOUT_TREES_O2="AnalysisResults_trees_O2.root" # Steering commands ENVALI="alienv setenv AliPhysics/latest -c" -ENVO2="alienv setenv O2/latest -c" +ENVO2="alienv setenv O2/latest-devDataSplitMaurice-o2 -c" ENVPOST="alienv setenv ROOT/latest -c" # Step scripts From d94dca74857403f3a571cd014fde95386749e9a0 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Mon, 19 Jul 2021 13:20:29 +0200 Subject: [PATCH 23/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 1f34099a..36755733 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=5 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From 27dbc80d6b095c8047c7b3b5404d094393121eea Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Mon, 19 Jul 2021 13:28:13 +0200 Subject: [PATCH 24/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 36755733..8aface03 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=5 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=50 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From 144d288733be35387b543b71f1c882342b0702be Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Tue, 20 Jul 2021 14:40:10 +0200 Subject: [PATCH 25/64] u --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index cd4772eb..4b23b7c9 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -61,7 +61,7 @@ DOO2_TASK_X=0 # hf-task-x DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi -DOO2_TREE_LC=1 # hf-tree-creator-lc-topkpi +DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi # Selection cuts APPLYCUTS_D0=0 # Apply D0 selection cuts. From 68a7d59a94cf33620a093c0693a55bd49473c5ca Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Tue, 20 Jul 2021 15:14:38 +0200 Subject: [PATCH 26/64] u --- codeHF/config_tasks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 4b23b7c9..cd4772eb 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -61,7 +61,7 @@ DOO2_TASK_X=0 # hf-task-x DOO2_TASK_LCK0SP=0 # hf-task-lc-tok0sp # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi -DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi +DOO2_TREE_LC=1 # hf-tree-creator-lc-topkpi # Selection cuts APPLYCUTS_D0=0 # Apply D0 selection cuts. From a7782efcbd7785876747bef01ba084f9a8f0d9ae Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 11 Aug 2021 14:42:32 +0200 Subject: [PATCH 27/64] u --- codeHF/config_input.sh | 2 +- codeHF/config_tasks.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 8aface03..36755733 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=50 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=5 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index cd4772eb..0ae281a8 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -53,7 +53,7 @@ DOO2_SEL_LCK0SP=0 # hf-lc-tok0sp-candidate-selector # User tasks DOO2_TASK_D0=0 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus -DOO2_TASK_LC=1 # hf-task-lc +DOO2_TASK_LC=0 # hf-task-lc DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_BPLUS=0 # hf-task-bplus From 3c82ad08d2a05b5ec0a0106bc1b3cbeb4c1a2245 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 11 Aug 2021 16:21:36 +0200 Subject: [PATCH 28/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 36755733..8aface03 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=5 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=50 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From 28f7dc53c71d7aecdad1dddfc287bbdbd55dce31 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 11 Aug 2021 16:26:52 +0200 Subject: [PATCH 29/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 8aface03..8b209a53 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=50 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=200 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From f5a1ae12b02db2e8d0599b7597ac4cdb897d9966 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Thu, 12 Aug 2021 15:08:02 +0200 Subject: [PATCH 30/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 8b209a53..dc51c37d 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=200 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=8000 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From 54a2a15b36ce2cf7356d8f9d2c7baac05f7fa0bd Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Mon, 23 Aug 2021 13:30:44 +0200 Subject: [PATCH 31/64] u --- codeHF/config_input.sh | 2 +- exec/runtest.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index dc51c37d..1f34099a 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=12 # Input case -NFILESMAX=8000 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion diff --git a/exec/runtest.sh b/exec/runtest.sh index 8a2d7b2b..c73f223f 100644 --- a/exec/runtest.sh +++ b/exec/runtest.sh @@ -58,7 +58,7 @@ FILEOUT_TREES_O2="AnalysisResults_trees_O2.root" # Steering commands ENVALI="alienv setenv AliPhysics/latest -c" -ENVO2="alienv setenv O2/latest-devDataSplitMaurice-o2 -c" +ENVO2="alienv setenv O2/latest -c" ENVPOST="alienv setenv ROOT/latest -c" # Step scripts From 79c1bb9241c79ac288bb87c0e7ff596887a7cfe1 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 25 Aug 2021 16:43:24 +0200 Subject: [PATCH 32/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 1f34099a..6ff899af 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -88,7 +88,7 @@ case $INPUT_CASE in ISMC=1;; 12) INPUT_LABEL="Run 5, p-p MC 14 TeV LctopKpi-enriched, Scenario 3, HF analysis" - INPUT_DIR="/home/mmazzill/pp14TeV_ccbarLc_20M_v1_04072021" + INPUT_DIR="/home/mmazzill/pp14Tev_ccbarLcpKpi_30M_geometry_v1_13082021" INPUT_FILES="AODRun5.*.root" JSON="$JSONRUN5_HF" ISINPUTO2=1 From bcd7298cef20076b7dd423513df55f87a86b1d34 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 25 Aug 2021 16:45:37 +0200 Subject: [PATCH 33/64] u --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 6ff899af..bee50461 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -88,7 +88,7 @@ case $INPUT_CASE in ISMC=1;; 12) INPUT_LABEL="Run 5, p-p MC 14 TeV LctopKpi-enriched, Scenario 3, HF analysis" - INPUT_DIR="/home/mmazzill/pp14Tev_ccbarLcpKpi_30M_geometry_v1_13082021" + INPUT_DIR="/home/mmazzill/pp14TeV_ccbarLcpKpi_30M_geometry_v1_13082021" INPUT_FILES="AODRun5.*.root" JSON="$JSONRUN5_HF" ISINPUTO2=1 From 2bcbcb6cba4d721b39ee730001fdfbe49fac2622 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Mon, 11 Oct 2021 11:32:14 +0200 Subject: [PATCH 34/64] local gitignore --- .gitignore | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bff3430a..38f0321d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,12 @@ *.pdf *.log report/ -.DS_Store \ No newline at end of file +.DS_Store +/.vs/VSWorkspaceState.json +/.vs/slnx.sqlite +/.vs/Run3Analysisvalidation/v16/Browse.VC.opendb +/.vs/Run3Analysisvalidation/v16/Browse.VC.db-wal +/.vs/Run3Analysisvalidation/v16/Browse.VC.db-shm +/.vs/Run3Analysisvalidation/v16/Browse.VC.db +/.vs/Run3Analysisvalidation/v16/.suo +/.vs/ProjectSettings.json From c9b5638f1f62f23b157e067cce631469afbf9e68 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Sun, 31 Oct 2021 18:50:42 +0100 Subject: [PATCH 35/64] Set local gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 38f0321d..799e41d8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,6 @@ report/ /.vs/Run3Analysisvalidation/v16/Browse.VC.db /.vs/Run3Analysisvalidation/v16/.suo /.vs/ProjectSettings.json +/.vs/Run3Analysisvalidation/v17 +/.vs/Run3Analysisvalidation/project-colors.json +/.vs/PythonSettings.json From bd837d165b5a3b0026183b87eac464d6e2ae3e27 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Sun, 31 Oct 2021 19:27:31 +0100 Subject: [PATCH 36/64] Initial Lb Tree creator --- codeHF/config_input.sh | 10 +++- codeHF/config_tasks.sh | 14 +++++- codeHF/dpl-config_run5_hf.json | 85 ++++++++++++++++++++++++++++++++++ codeHF/workflows.yml | 22 +++++++++ 4 files changed, 128 insertions(+), 3 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index b655484c..40a33f46 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -4,7 +4,7 @@ # Input specification for runtest.sh # (Modifies input parameters.) -INPUT_CASE=12 # Input case +INPUT_CASE=18 # Input case NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) @@ -139,4 +139,12 @@ case $INPUT_CASE in ISINPUTO2=1 ISALICE3=1 ISMC=1;; + 18) + INPUT_LABEL="Run 5, p-p MC 14 TeV bbar-enriched, HF analysis" + INPUT_DIR="/home/mmazzill/pp14TeV_bbbar_10M_2T_13102021" + INPUT_FILES="AODRun5.*.root" + JSON="$JSONRUN5_HF" + ISINPUTO2=1 + ISALICE3=1 + ISMC=1;; esac diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index f9af0648..3c171d25 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -16,9 +16,9 @@ # Steps DOCLEAN=1 # Delete created files (before and after running tasks). DOCONVERT=1 # Convert AliESDs.root to AO2D.root. -DOALI=1 # Run AliPhysics tasks. +DOALI=0 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. -DOPOSTPROCESS=1 # Run output postprocessing. (Compare AliPhysics and O2 output.) +DOPOSTPROCESS=0 # Run output postprocessing. (Compare AliPhysics and O2 output.) # Disable incompatible steps. [ "$ISINPUTO2" -eq 1 ] && { DOCONVERT=0; DOALI=0; } @@ -45,6 +45,7 @@ DOO2_CAND_2PRONG=0 # hf-candidate-creator-2prong DOO2_CAND_3PRONG=0 # hf-candidate-creator-3prong DOO2_CAND_CASC=0 # hf-candidate-creator-cascade DOO2_CAND_X=0 # hf-candidate-creator-x +DOO2_CAND_LB=0 # hf-candidate-creator-lb DOO2_CAND_CHIC=0 # hf-candidate-creator-chic DOO2_CAND_XICC=0 # hf-candidate-creator-xicc DOO2_CAND_BPLUS=0 # hf-candidate-creator-bplus @@ -52,6 +53,7 @@ DOO2_CAND_BPLUS=0 # hf-candidate-creator-bplus DOO2_SEL_D0=0 # hf-d0-candidate-selector DOO2_SEL_DPLUS=0 # hf-dplus-topikpi-candidate-selector DOO2_SEL_LC=0 # hf-lc-candidate-selector +DOO2_SEL_LB=0 # hf-lb-tolcpi-candidate-selector DOO2_SEL_XIC=0 # hf-xic-topkpi-candidate-selector DOO2_SEL_JPSI=0 # hf-jpsi-candidate-selector DOO2_SEL_X=0 # hf-x-tojpsipipi-candidate-selector @@ -63,6 +65,7 @@ DOO2_SEL_BPLUS=0 # hf-bplus-tod0pi-candidate-selector DOO2_TASK_D0=0 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus DOO2_TASK_LC=0 # hf-task-lc +DOO2_TASK_LB=0 # hf-task-lb DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_X=0 # hf-task-x @@ -73,6 +76,7 @@ DOO2_TASK_BPLUS=0 # hf-task-bplus # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi +DOO2_TREE_LB=1 # hf-tree-creator-lb-tolcpi DOO2_TREE_X=0 # hf-tree-creator-x-tojpsipipi DOO2_TREE_XICC=0 # hf-tree-creator-xicc-topkpipi # Correlations @@ -212,6 +216,7 @@ function MakeScriptO2 { [ $DOO2_CAND_2PRONG -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-2prong" [ $DOO2_CAND_3PRONG -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-3prong" [ $DOO2_CAND_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-x" + [ $DOO2_CAND_LB -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-lb" [ $DOO2_CAND_CHIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-chic" [ $DOO2_CAND_CASC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-cascade" [ $DOO2_CAND_XICC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-xicc" @@ -222,6 +227,7 @@ function MakeScriptO2 { [ $DOO2_SEL_JPSI -eq 1 ] && WORKFLOWS+=" ${WF_SEL_JPSI}${SUFFIX_ALICE3}" [ $DOO2_SEL_DPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-dplus-topikpi-candidate-selector" [ $DOO2_SEL_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-lc-candidate-selector" + [ $DOO2_SEL_LB -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-lb-tolcpi-candidate-selector" [ $DOO2_SEL_XIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-xic-topkpi-candidate-selector" [ $DOO2_SEL_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-x-tojpsipipi-candidate-selector" [ $DOO2_SEL_CHIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-chic-tojpsigamma-candidate-selector" @@ -233,6 +239,7 @@ function MakeScriptO2 { [ $DOO2_TASK_JPSI -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-jpsi" [ $DOO2_TASK_DPLUS -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-dplus" [ $DOO2_TASK_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lc" + [ $DOO2_TASK_LB -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-lb" [ $DOO2_TASK_XIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-xic" [ $DOO2_TASK_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-x" [ $DOO2_TASK_CHIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-task-chic" @@ -250,6 +257,7 @@ function MakeScriptO2 { # Tree creators [ $DOO2_TREE_D0 -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-tree-creator-d0-tokpi" [ $DOO2_TREE_LC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-tree-creator-lc-topkpi" + [ $DOO2_TREE_LB -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-tree-creator-lb-tolcpi" [ $DOO2_TREE_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-tree-creator-x-tojpsipipi" [ $DOO2_TREE_XICC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-tree-creator-xicc-topkpipi" @@ -317,6 +325,7 @@ function MakeScriptPostprocess { [ $DOO2_TASK_D0 -eq 1 ] && { OPT_COMPARE+=" d0 "; [ "$ISMC" -eq 1 ] && OPT_COMPARE+=" d0-mc "; } [ $DOO2_TASK_DPLUS -eq 1 ] && OPT_COMPARE+=" dplus " [ $DOO2_TASK_LC -eq 1 ] && { OPT_COMPARE+=" lc "; [ "$ISMC" -eq 1 ] && OPT_COMPARE+=" lc-mc "; } + [ $DOO2_TASK_LB -eq 1 ] && { OPT_COMPARE+=" lb "; [ "$ISMC" -eq 1 ] && OPT_COMPARE+=" lb-mc "; } [ $DOO2_TASK_XIC -eq 1 ] && OPT_COMPARE+=" xic " [ $DOO2_TASK_JPSI -eq 1 ] && OPT_COMPARE+=" jpsi " [ "$OPT_COMPARE" ] && POSTEXEC+=" && root -b -q -l \"$DIR_TASKS/Compare.C(\\\"\$FileO2\\\", \\\"\$FileAli\\\", \\\"$OPT_COMPARE\\\", $DORATIO)\"" @@ -327,6 +336,7 @@ function MakeScriptPostprocess { [ $DOO2_TASK_D0 -eq 1 ] && PARTICLES+=" d0 " [ $DOO2_TASK_DPLUS -eq 1 ] && PARTICLES+=" dplus " [ $DOO2_TASK_LC -eq 1 ] && PARTICLES+=" lc " + [ $DOO2_TASK_LB -eq 1 ] && PARTICLES+=" lb " [ $DOO2_TASK_XIC -eq 1 ] && PARTICLES+=" xic " [ $DOO2_TASK_JPSI -eq 1 ] && PARTICLES+=" jpsi " [ $DOO2_TASK_LCK0SP -eq 1 ] && PARTICLES+=" lc-tok0sP " diff --git a/codeHF/dpl-config_run5_hf.json b/codeHF/dpl-config_run5_hf.json index 18fdad19..87c11312 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -185,6 +185,15 @@ "d_minrelchi2change": "0.9", "b_dovalplots": "true" }, + "hf-candidate-creator-lb": { + "d_bz": "5.", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true" + }, "hf-cand-creator-xicc": { "d_bz": "20", "b_propdca": "true", @@ -477,6 +486,44 @@ ] } }, + "hf-lb-tolcpi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.", + "d_pidTOFMaxpT": "10.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" ] + }, + "Lb_to_Lcpi_cuts": { + "values": [ + ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "0.2", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "0.9", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "1.5", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "2.3", "0.15", "1."], + ["0.5", "0.90", "0.001", "0.001", "3.0", "0.15", "1."], + ["0.5", "0.90", "0.001", "0.001", "4.2", "0.15", "1."], + ["0.5", "0.90", "0.001", "0.001", "6.2", "0.15", "1."] + ] + } + }, "hf-xicc-to-p-k-pi-pi-candidate-selector": { "d_pTCandMin": "0.", "d_pTCandMax": "36.", @@ -639,6 +686,44 @@ ] } }, + "hf-task-lb": { + "cutYCandMax": "2.0", + "d_selectionFlagLb": "0", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + } + }, + "hf-task-lb-mc": { + "cutYCandMax": "2.0", + "d_selectionFlagLb": "0", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + } + }, "hf-task-xic": { "cutEtaCandMax": "-1", "d_selectionFlagXic": "0", diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index b0bd859f..4d31a2f9 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -97,6 +97,14 @@ workflows: default: [HFCANDBPLUSBASE, HFCANDBPLUSEXT] mc: [HFCANDBPMCREC, HFCANDBPMCGEN] + o2-analysis-hf-candidate-creator-lb: + <<: *cand_creator + dependencies: + - o2-analysis-hf-lc-candidate-selector + tables: + default: [HFCANDLBBASE, HFCANLBXEXT] + mc: [HFCANDLBMCREC, HFCANDLBMCGEN] + # Selectors o2-analysis-hf-d0-candidate-selector: &selector_2prong @@ -122,6 +130,11 @@ workflows: - o2-analysis-pid-tof-full tables: HFSELDPLUSCAND + o2-analysis-hf-lb-tolcpi-candidate-selector: + <<: *selector_3prong + dependencies: o2-analysis-hf-candidate-creator-lb + tables: HFSELLBCAND + o2-analysis-hf-lc-candidate-selector: <<: *selector_3prong tables: HFSELLCCAND @@ -173,6 +186,10 @@ workflows: <<: *task dependencies: [o2-analysis-hf-lc-candidate-selector, o2-analysis-alice3-trackextension] + o2-analysis-hf-task-lb: + <<: *task + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-alice3-trackextension] + o2-analysis-hf-task-xic: <<: *task dependencies: o2-analysis-hf-xic-topkpi-candidate-selector @@ -222,6 +239,11 @@ workflows: dependencies: o2-analysis-hf-lc-candidate-selector tables: [HFCANDP3Full, HFCANDP3FullE, HFCANDP3FullP] + o2-analysis-hf-tree-creator-lb-tolcpi: + requires_mc: yes + dependencies: o2-analysis-hf-lb-tolcpi-candidate-selector + tables: [HFCANDLBFull, HFCANDLBFullE, HFCANDLBFullP] + o2-analysis-hf-tree-creator-x-tojpsipipi: requires_mc: yes dependencies: o2-analysis-hf-x-tojpsipipi-candidate-selector From 110501b04743b6d692251a1a7ba9aaf74f3e3462 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Mon, 1 Nov 2021 12:15:24 +0100 Subject: [PATCH 37/64] s --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 3c171d25..9a2e9676 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -76,9 +76,9 @@ DOO2_TASK_BPLUS=0 # hf-task-bplus # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi -DOO2_TREE_LB=1 # hf-tree-creator-lb-tolcpi +DOO2_TREE_LB=0 # hf-tree-creator-lb-tolcpi DOO2_TREE_X=0 # hf-tree-creator-x-tojpsipipi -DOO2_TREE_XICC=0 # hf-tree-creator-xicc-topkpipi +DOO2_TREE_XICC=1 # hf-tree-creator-xicc-topkpipi # Correlations DOO2_D0D0BAR_DATA=0 # hf-correlator-d0d0bar DOO2_D0D0BAR_MCREC=0 # hf-correlator-d0d0bar-mc-rec From b39ceb4774017603400f6bdd91d3e27952072e63 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Thu, 4 Nov 2021 13:53:22 +0100 Subject: [PATCH 38/64] update config json --- codeHF/dpl-config_run5_hf.json | 2858 ++++++++++++++++---------------- 1 file changed, 1400 insertions(+), 1458 deletions(-) diff --git a/codeHF/dpl-config_run5_hf.json b/codeHF/dpl-config_run5_hf.json index 87c11312..fba8ca56 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -1,1499 +1,1441 @@ { - "internal-dpl-clock": "", - "internal-dpl-aod-reader": { - "start-value-enumeration": "0", - "end-value-enumeration": "-1", - "step-value-enumeration": "1", - "aod-file": "@list_o2.txt" + "internal-dpl-clock": "", + "internal-dpl-aod-reader": { + "start-value-enumeration": "0", + "end-value-enumeration": "-1", + "step-value-enumeration": "1", + "aod-file": "@list_o2.txt" + }, + "hf-tag-sel-collisions": { + "fillHistograms": "true", + "xVertexMin": "-100", + "xVertexMax": "100", + "yVertexMin": "-100", + "yVertexMax": "100", + "zVertexMin": "-100", + "zVertexMax": "100", + "nContribMin": "0", + "chi2Max": "0", + "triggerClassName": "" + }, + "hf-tag-sel-tracks": { + "fillHistograms": "true", + "bz": "5.", + "doCutQuality": "false", + "tpcNClsFound": "-999999", + "pTBinsTrack": { + "values": [ + "0.", + "0.5", + "1.", + "1.5", + "2.", + "3.", + "100." + ] }, - "hf-tag-sel-collisions": { - "fillHistograms": "true", - "xVertexMin": "-100", - "xVertexMax": "100", - "yVertexMin": "-100", - "yVertexMax": "100", - "zVertexMin": "-100", - "zVertexMax": "100", - "nContribMin": "0", - "chi2Max": "0", - "triggerClassName": "" + "pTMinTrack2Prong": ".3", + "etaMax2Prong": "1.44", + "cutsTrack2Prong": { + "values": [ + [ "0.001", "1.0" ], + [ "0.001", "1.0" ], + [ "0.001", "1.0" ], + [ "0.001", "1.0" ], + [ "0.000", "10." ], + [ "0.000", "10." ] + ] }, - "hf-tag-sel-tracks": { - "fillHistograms": "true", - "bz": "5.", - "doCutQuality": "false", - "tpcNClsFound": "-999999", - "pTBinsTrack": { - "values": [ - "0.", - "0.5", - "1.", - "1.5", - "2.", - "3.", - "100." - ] - }, - "pTMinTrack2Prong": ".3", - "etaMax2Prong": "1.44", - "cutsTrack2Prong": { - "values": [ - ["0.001", "1.0"], - ["0.001", "1.0"], - ["0.001", "1.0"], - ["0.001", "1.0"], - ["0.000", "10."], - ["0.000", "10."] - ] - }, - "pTMinTrack3Prong": ".3", - "etaMax3Prong": "1.44", - "cutsTrack3Prong": { - "values": [ - ["0.001", "1.0"], - ["0.001", "1.0"], - ["0.001", "1.0"], - ["0.001", "1.0"], - ["0.000", "10."], - ["0.000", "10."] - ] - } - }, - "hf-track-index-skims-creator": { - "fillHistograms": "true", - "do3prong": "1", - "bz": "5.", - "propToDCA": "true", - "maxRad": "5.", - "maxDZIni": "999.", - "minParamChange": "0.001", - "minRelChi2Change": "0.9", - - "pTBinsD0ToPiK": { - "values": [ - "0.", - "5.", - "1000." - ] - }, - "cutsD0ToPiK": { - "values": [ - ["1.61", "2.12", "0.5", "0.00"], - ["1.61", "2.12", "0.5", "0.00"] - ] - }, - - "pTBinsJpsiToEE": { - "values": [ - "0.", - "5.", - "1000." - ] - }, - "cutsJpsiToEE": { - "values": [ - ["2.5", "4.1", "-2.", "1000.00"], - ["2.5", "4.1", "-2.", "1000.00"] - ] - }, - - "pTBinsJpsiToMuMu": { - "values": [ - "0.", - "5.", - "1000." - ] - }, - "cutsJpsiToMuMu": { - "values": [ - ["2.5", "4.1", "-2.", "1000.00"], - ["2.5", "4.1", "-2.", "1000.00"] - ] - }, - - "pTBinsDPlusToPiKPi": { - "values": [ - "2.", - "5.", - "1000." - ] - }, - "cutsDPlusToPiKPi": { - "values": [ - ["1.67", "2.07", "0.95", "0.05"], - ["1.67", "2.07", "0.95", "0.05"] - ] - }, - - "pTBinsDsToPiKK": { - "values": [ - "1.5", - "5.", - "1000." - ] - }, - "cutsDsToPiKK": { - "values": [ - ["1.74", "2.18", "0.94", "0.02"], - ["1.74", "2.18", "0.94", "0.02"] - ] - }, - - "pTBinsLcToPKPi": { - "values": [ - "0.5", - "5.", - "1000." - ] - }, - "cutsLcToPKPi": { - "values": [ - ["1.98", "2.58", "0.8", "0.0"], - ["1.98", "2.58", "0.8", "0.0"] - ] - }, + "pTMinTrack3Prong": ".3", + "etaMax3Prong": "1.44", + "cutsTrack3Prong": { + "values": [ + [ "0.001", "1.0" ], + [ "0.001", "1.0" ], + [ "0.001", "1.0" ], + [ "0.001", "1.0" ], + [ "0.000", "10." ], + [ "0.000", "10." ] + ] + } + }, + "hf-track-index-skims-creator": { + "fillHistograms": "true", + "do3prong": "1", + "bz": "5.", + "propToDCA": "true", + "maxRad": "5.", + "maxDZIni": "999.", + "minParamChange": "0.001", + "minRelChi2Change": "0.9", - "pTBinsXicToPKPi": { - "values": [ - "1.", - "5.", - "1000." - ] - }, - "cutsXicToPKPi": { - "values": [ - ["2.10", "2.80", "-2.", "0.0"], - ["2.10", "2.80", "-2.", "0.0"] - ] - } - }, - "hf-cand-creator-2prong": { - "d_bz": "5.", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true" - }, - "hf-cand-creator-3prong": { - "d_bz": "5.", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true" - }, - "hf-candidate-creator-lb": { - "d_bz": "5.", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true" - }, - "hf-cand-creator-xicc": { - "d_bz": "20", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true", - "d_selectionFlagXic": "1", - "cutPtPionMin": "0.2" - }, - "hf-d0-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "1000.", - "d_pidTOFMaxpT": "2000.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTPCCombined": "500.", - "d_nSigmaTOF": "300.", - "d_nSigmaTOFCombined": "5000.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "1.5", - "2", - "2.5", - "3", - "3.5", - "4", - "4.5", - "5", - "5.5", - "6", - "6.5", - "7", - "7.5", - "8", - "9", - "10", - "12", - "16", - "20", - "24", - "36", - "50", - "100" - ] - }, - "D0_to_pi_K_cuts": { - "values": [ - [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "10.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.6", "0.6", "0.1", "0.1", "1000.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ] - ] - } - }, - "hf-dplus-topikpi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "1000.", - "d_pidTOFMaxpT": "2000.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "300.", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - }, - "DPlus_to_Pi_K_Pi_cuts": { - "values": [ - ["0.2", "0.3", "0.3", "0.07", "6.", "0.96", "0.985", "2.5"], - ["0.2", "0.3", "0.3", "0.07", "5.", "0.96", "0.985", "2.5"], - ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.980", "2.5"], - ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], - ["0.2", "0.3", "0.3", "0.20", "5.", "0.94", "0.000", "2.5"] - ] - } - }, - "hf-lc-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_FilterPID": "false", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "1000.", - "d_pidTOFMaxpT": "2000.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTPCCombined": "500.", - "d_nSigmaTOF": "300.", - "d_nSigmaTOFCombined": "5000.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "10", - "24", - "36" - ] - }, - "Lc_to_p_K_pi_cuts": { - "values": [ - [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.2", "0.2", "0.2", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.3", "0.3", "0.3", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"] - ] - } - }, - "hf-xic-topkpi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_FilterPID": "true", - "d_pidTPCMinpT": "0.15", - "d_pidTPCMaxpT": "1.0", - "d_pidTOFMinpT": "0.5", - "d_pidTOFMaxpT": "4.0", - "d_TPCNClsFindablePIDCut": "70.", - "d_nSigmaTPC": "3.", - "d_nSigmaTPCCombined": "5.", - "d_nSigmaTOF": "3.", - "d_nSigmaTOFCombined": "5.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - }, - "Xic_to_p_K_pi_cuts": { - "values": [ - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"] - ] - } - }, - "hf-jpsi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "0.15", - "d_pidTOFMaxpT": "15.", - "d_pidRICHMinpT": "0.15", - "d_pidRICHMaxpT": "15.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "3.", - "d_nSigmaRICH": "3.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "15" - ] - }, - "Jpsi_to_ee_cuts": { - "values": [ - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."], - ["0.5", "0.2", "0.4", "0.5", "1."] - ] - } + "pTBinsD0ToPiK": { + "values": [ + "0.", + "5.", + "1000." + ] }, - "hf-x-tojpsipipi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "0.", - "d_pidTOFMaxpT": "10.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "3.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "15" - ] - }, - "X_to_jpsipipi_cuts": { - "values": [ - ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "0.2", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "0.9", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "1.5", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "2.3", "0.15", "1."], - ["0.5", "0.90", "0.001", "0.001", "3.0", "0.15", "1."], - ["0.5", "0.90", "0.001", "0.001", "4.2", "0.15", "1."], - ["0.5", "0.90", "0.001", "0.001", "6.2", "0.15", "1."] - ] - } + "cutsD0ToPiK": { + "values": [ + [ "1.61", "2.12", "0.5", "0.00" ], + [ "1.61", "2.12", "0.5", "0.00" ] + ] }, - "hf-lb-tolcpi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "0.", - "d_pidTOFMaxpT": "10.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "3.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" ] - }, - "Lb_to_Lcpi_cuts": { - "values": [ - ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "0.2", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "0.9", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "1.5", "0.15", "1."], - ["0.5", "0.80", "0.001", "0.001", "2.3", "0.15", "1."], - ["0.5", "0.90", "0.001", "0.001", "3.0", "0.15", "1."], - ["0.5", "0.90", "0.001", "0.001", "4.2", "0.15", "1."], - ["0.5", "0.90", "0.001", "0.001", "6.2", "0.15", "1."] - ] - } - }, - "hf-xicc-to-p-k-pi-pi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_FilterPID": "true", - "d_pidTPCMinpT": "9999.", - "d_pidTPCMaxpT": "99999.", - "d_pidTOFMinpT": "0.15", - "d_pidTOFMaxpT": "5.", - "d_nSigmaTPC": "9999.", - "d_nSigmaTPCCombined": "9999.", - "d_nSigmaTOF": "3.", - "d_nSigmaTOFCombined": "5.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - }, - "Xicc_to_p_K_pi_pi_cuts": { - "values": [ - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"] - ] - } - }, - "hf-task-d0": { - "cutYCandMax": "0.8", - "d_selectionFlagD0": "0", - "d_selectionFlagD0bar": "0", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "1.5", - "2", - "2.5", - "3", - "3.5", - "4", - "4.5", - "5", - "5.5", - "6", - "6.5", - "7", - "7.5", - "8", - "9", - "10", - "12", - "16", - "20", - "24", - "36", - "50", - "100" - ] - } - }, - "hf-task-d0-mc": { - "cutYCandMax": "0.8", - "d_selectionFlagD0": "0", - "d_selectionFlagD0bar": "0" - }, - "hf-task-dplus": { - "cutYCandMax": "0.8", - "d_selectionFlagDPlus": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-dplus-mc": { - "cutYCandMax": "0.8", - "d_selectionFlagDPlus": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-lc": { - "cutYCandMax": "2.0", - "d_selectionFlagLc": "0", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - } - }, - "hf-task-lc-mc": { - "cutYCandMax": "2.0", - "d_selectionFlagLc": "0", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - } - }, - "hf-task-lb": { - "cutYCandMax": "2.0", - "d_selectionFlagLb": "0", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - } - }, - "hf-task-lb-mc": { - "cutYCandMax": "2.0", - "d_selectionFlagLb": "0", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - } - }, - "hf-task-xic": { - "cutEtaCandMax": "-1", - "d_selectionFlagXic": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-xic-mc": { - "cutEtaCandMax": "-1", - "d_selectionFlagXic": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-jpsi": { - "cutYCandMax": "1.44", - "d_selectionFlagJpsi": "0", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "15" - ] - } - }, - "hf-task-jpsi-mc": { - "cutYCandMax": "1.44", - "d_selectionFlagJpsi": "0" + + "pTBinsJpsiToEE": { + "values": [ + "0.", + "5.", + "1000." + ] }, - "hf-candidate-creator-x": { - "cutYCandMax": "1.44", - "d_selectionFlagJpsi": "0" + "cutsJpsiToEE": { + "values": [ + [ "2.5", "4.1", "-2.", "1000.00" ], + [ "2.5", "4.1", "-2.", "1000.00" ] + ] }, - "hf-task-x": { - "cutYCandMax": "1.44", - "d_selectionFlagX": "0" + + "pTBinsJpsiToMuMu": { + "values": [ + "0.", + "5.", + "1000." + ] }, - "hf-task-x-mc": { - "cutYCandMax": "1.44", - "d_selectionFlagX": "0" + "cutsJpsiToMuMu": { + "values": [ + [ "2.5", "4.1", "-2.", "1000.00" ], + [ "2.5", "4.1", "-2.", "1000.00" ] + ] }, - "hf-task-xicc": { - "cutYCandMax": "-1", - "d_selectionFlagXicc": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } + + "pTBinsDPlusToPiKPi": { + "values": [ + "2.", + "5.", + "1000." + ] }, - "hf-task-xicc-mc": { - "cutYCandMax": "-1", - "d_selectionFlagXicc": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } + "cutsDPlusToPiKPi": { + "values": [ + [ "1.67", "2.07", "0.95", "0.05" ], + [ "1.67", "2.07", "0.95", "0.05" ] + ] }, - "hf-correlator-d0-d0bar": { - "efficiencyFlagD": "1", - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } + + "pTBinsDsToPiKK": { + "values": [ + "1.5", + "5.", + "1000." + ] }, - "hf-correlator-d0-d0bar-mc-rec": { - "efficiencyFlagD": "1", - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } + "cutsDsToPiKK": { + "values": [ + [ "1.74", "2.18", "0.94", "0.02" ], + [ "1.74", "2.18", "0.94", "0.02" ] + ] }, - "hf-correlator-d0-d0bar-mc-gen": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + + "pTBinsLcToPKPi": { + "values": [ + "0.5", + "5.", + "1000." + ] }, - "hf-correlator-d0-d0bar-ls": { - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + "cutsLcToPKPi": { + "values": [ + [ "1.98", "2.58", "0.8", "0.0" ], + [ "1.98", "2.58", "0.8", "0.0" ] + ] }, - "hf-correlator-d0-d0bar-mc-rec-ls": { - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + + "pTBinsXicToPKPi": { + "values": [ + "1.", + "5.", + "1000." + ] }, - "hf-correlator-d0-d0bar-mc-gen-ls": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + "cutsXicToPKPi": { + "values": [ + [ "2.10", "2.80", "-2.", "0.0" ], + [ "2.10", "2.80", "-2.", "0.0" ] + ] + } + }, + "hf-cand-creator-2prong": { + "d_bz": "5.", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true" + }, + "hf-cand-creator-3prong": { + "d_bz": "5.", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true" + }, + "hf-cand-creator-xicc": { + "d_bz": "20", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true", + "d_selectionFlagXic": "1", + "cutPtPionMin": "0.2" + }, + "hf-d0-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "1000.", + "d_pidTOFMaxpT": "2000.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTPCCombined": "500.", + "d_nSigmaTOF": "300.", + "d_nSigmaTOFCombined": "5000.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "1.5", + "2", + "2.5", + "3", + "3.5", + "4", + "4.5", + "5", + "5.5", + "6", + "6.5", + "7", + "7.5", + "8", + "9", + "10", + "12", + "16", + "20", + "24", + "36", + "50", + "100" + ] }, - "hf-correlator-dplus-dminus": { - "efficiencyFlagD": "1", - "selectionFlagDplus": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "-999.", - "0.019", - "0.060", - "0.079", - "0.136", - "0.195", - "0.248", - "0.299", - "0.310", - "0.384", - "0.450", - "0.500" - ] - } + "D0_to_pi_K_cuts": { + "values": [ + [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "10.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.6", "0.6", "0.1", "0.1", "1000.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ] + ] + } + }, + "hf-dplus-topikpi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "1000.", + "d_pidTOFMaxpT": "2000.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "300.", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] }, - "hf-correlator-dplus-dminus-mc-rec": { - "efficiencyFlagD": "1", - "selectionFlagDplus": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "-999.", - "0.019", - "0.060", - "0.079", - "0.136", - "0.195", - "0.248", - "0.299", - "0.310", - "0.384", - "0.450", - "0.500" - ] - } + "DPlus_to_Pi_K_Pi_cuts": { + "values": [ + [ "0.2", "0.3", "0.3", "0.07", "6.", "0.96", "0.985", "2.5" ], + [ "0.2", "0.3", "0.3", "0.07", "5.", "0.96", "0.985", "2.5" ], + [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.980", "2.5" ], + [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], + [ "0.2", "0.3", "0.3", "0.20", "5.", "0.94", "0.000", "2.5" ] + ] + } + }, + "hf-lc-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_FilterPID": "false", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "1000.", + "d_pidTOFMaxpT": "2000.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTPCCombined": "500.", + "d_nSigmaTOF": "300.", + "d_nSigmaTOFCombined": "5000.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "10", + "24", + "36" + ] }, - "hf-correlator-dplus-dminus-mc-gen": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + "Lc_to_p_K_pi_cuts": { + "values": [ + [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.2", "0.2", "0.2", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.3", "0.3", "0.3", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ] + ] + } + }, + "hf-xic-topkpi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_FilterPID": "true", + "d_pidTPCMinpT": "0.15", + "d_pidTPCMaxpT": "1.0", + "d_pidTOFMinpT": "0.5", + "d_pidTOFMaxpT": "4.0", + "d_TPCNClsFindablePIDCut": "70.", + "d_nSigmaTPC": "3.", + "d_nSigmaTPCCombined": "5.", + "d_nSigmaTOF": "3.", + "d_nSigmaTOFCombined": "5.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] }, - "hf-correlator-c-cbar-mc-gen": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + "Xic_to_p_K_pi_cuts": { + "values": [ + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ] + ] + } + }, + "hf-jpsi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.15", + "d_pidTOFMaxpT": "15.", + "d_pidRICHMinpT": "0.15", + "d_pidRICHMaxpT": "15.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "d_nSigmaRICH": "3.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "15" + ] }, - "hf-correlator-c-cbar-mc-gen-ls": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + "Jpsi_to_ee_cuts": { + "values": [ + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ], + [ "0.5", "0.2", "0.4", "0.5", "1." ] + ] + } + }, + "hf-x-tojpsipipi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.", + "d_pidTOFMaxpT": "10.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "15" + ] }, - "hf-task-correlation-d-dbar": { - "efficiencyFlagD": "1", - "ptBinsForCorrelations": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - }, - "signalRegionInner": { - "values": [ - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810" - ] - }, - "signalRegionOuter": { - "values": [ - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922" - ] - }, - "sidebandLeftInner": { - "values": [ - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642" - ] - }, - "sidebandLeftOuter": { - "values": [ - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754" - ] - }, - "sidebandRightInner": { - "values": [ - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978" - ] - }, - "sidebandRightOuter": { - "values": [ - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090" - ] - }, - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } + "X_to_jpsipipi_cuts": { + "values": [ + [ "0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1." ], + [ "0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1." ], + [ "0.5", "0.80", "0.001", "0.001", "0.2", "0.15", "1." ], + [ "0.5", "0.80", "0.001", "0.001", "0.9", "0.15", "1." ], + [ "0.5", "0.80", "0.001", "0.001", "1.5", "0.15", "1." ], + [ "0.5", "0.80", "0.001", "0.001", "2.3", "0.15", "1." ], + [ "0.5", "0.90", "0.001", "0.001", "3.0", "0.15", "1." ], + [ "0.5", "0.90", "0.001", "0.001", "4.2", "0.15", "1." ], + [ "0.5", "0.90", "0.001", "0.001", "6.2", "0.15", "1." ] + ] + } + }, + "hf-xicc-to-p-k-pi-pi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_FilterPID": "true", + "d_pidTPCMinpT": "9999.", + "d_pidTPCMaxpT": "99999.", + "d_pidTOFMinpT": "0.15", + "d_pidTOFMaxpT": "5.", + "d_nSigmaTPC": "9999.", + "d_nSigmaTPCCombined": "9999.", + "d_nSigmaTOF": "3.", + "d_nSigmaTOFCombined": "5.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] }, - "hf-task-correlation-d-dbar-mc-rec": { - "efficiencyFlagD": "1", - "ptBinsForCorrelations": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - }, - "signalRegionInner": { - "values": [ - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810" - ] - }, - "signalRegionOuter": { - "values": [ - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922" - ] - }, - "sidebandLeftInner": { - "values": [ - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642" - ] - }, - "sidebandLeftOuter": { - "values": [ - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754" - ] - }, - "sidebandRightInner": { - "values": [ - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978" - ] - }, - "sidebandRightOuter": { - "values": [ - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090" - ] - }, - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } + "Xicc_to_p_K_pi_pi_cuts": { + "values": [ + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ] + ] + } + }, + "hf-lb-tolcpi-candidate-selector": { + "d_pTCandMin": "3.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.", + "d_pidTOFMaxpT": "10.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "13", + "16", + "20", + "24" + ] }, - "hf-task-correlation-d-dbar-mc-gen": { - "ptBinsForCorrelations": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } + "Lb_to_lcpi_cuts": { + "values": [ + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.99", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ] + ] + } + }, + "hf-task-d0": { + "cutYCandMax": "0.8", + "d_selectionFlagD0": "0", + "d_selectionFlagD0bar": "0", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "1.5", + "2", + "2.5", + "3", + "3.5", + "4", + "4.5", + "5", + "5.5", + "6", + "6.5", + "7", + "7.5", + "8", + "9", + "10", + "12", + "16", + "20", + "24", + "36", + "50", + "100" + ] + } + }, + "hf-task-d0-mc": { + "cutYCandMax": "0.8", + "d_selectionFlagD0": "0", + "d_selectionFlagD0bar": "0" + }, + "hf-task-dplus": { + "cutYCandMax": "0.8", + "d_selectionFlagDPlus": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } + }, + "hf-task-dplus-mc": { + "cutYCandMax": "0.8", + "d_selectionFlagDPlus": "0" + }, + "hf-task-lc": { + "cutYCandMax": "2.0", + "d_selectionFlagLc": "0", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + } + }, + "hf-task-lc-mc": { + "cutYCandMax": "2.0", + "d_selectionFlagLc": "0", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + } + }, + "hf-task-xic": { + "cutEtaCandMax": "-1", + "d_selectionFlagXic": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } + }, + "hf-task-xic-mc": { + "cutEtaCandMax": "-1", + "d_selectionFlagXic": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } + }, + "hf-task-jpsi": { + "cutYCandMax": "1.44", + "d_selectionFlagJpsi": "0", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "15" + ] + } + }, + "hf-task-jpsi-mc": { + "cutYCandMax": "1.44", + "d_selectionFlagJpsi": "0" + }, + "hf-candidate-creator-x": { + "cutYCandMax": "1.44", + "d_selectionFlagJpsi": "0" + }, + "hf-task-x": { + "cutYCandMax": "1.44", + "d_selectionFlagX": "0" + }, + "hf-task-x-mc": { + "cutYCandMax": "1.44", + "d_selectionFlagX": "0" + }, + "hf-task-xicc": { + "cutYCandMax": "-1", + "d_selectionFlagXicc": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } + }, + "hf-task-xicc-mc": { + "cutYCandMax": "-1", + "d_selectionFlagXicc": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } + }, + "hf-correlator-d0-d0bar": { + "efficiencyFlagD": "1", + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-correlator-d0-d0bar-mc-rec": { + "efficiencyFlagD": "1", + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-correlator-d0-d0bar-mc-gen": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-d0-d0bar-ls": { + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-d0-d0bar-mc-rec-ls": { + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-d0-d0bar-mc-gen-ls": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-dplus-dminus": { + "efficiencyFlagD": "1", + "selectionFlagDplus": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "-999.", + "0.019", + "0.060", + "0.079", + "0.136", + "0.195", + "0.248", + "0.299", + "0.310", + "0.384", + "0.450", + "0.500" + ] + } + }, + "hf-correlator-dplus-dminus-mc-rec": { + "efficiencyFlagD": "1", + "selectionFlagDplus": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "-999.", + "0.019", + "0.060", + "0.079", + "0.136", + "0.195", + "0.248", + "0.299", + "0.310", + "0.384", + "0.450", + "0.500" + ] + } + }, + "hf-correlator-dplus-dminus-mc-gen": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-c-cbar-mc-gen": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-c-cbar-mc-gen-ls": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-task-correlation-d-dbar": { + "efficiencyFlagD": "1", + "ptBinsForCorrelations": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] }, - "hf-track-index-skims-cascades-creator": { - "doValPlots": "true", - "bZ": "5", - "propDCA": "true", - "maxR": "200", - "maxDZIni": "4", - "minParamChange": "0.001", - "minRelChi2Change": "0.9", - "UseAbsDCA": "true", - "doCutQuality": "true", - "TPCRefit": "true", - "i_minCrossedRows": "50", - "etaMax": "1.1", - "ptMin": "0.05", - "cosPAV0": "0.995", - "dcaXYNegToPV": "0.1", - "dcaXYPosToPVS": "0.1", - "cutInvMassV0": "0.05", - "cutCascPtCandMin": "-1", - "cutCascInvMassLc": "1" + "signalRegionInner": { + "values": [ + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810" + ] }, - "hf-cand-creator-cascade": { - "bZ": "5", - "propDCA": "true", - "maxR": "200", - "maxDZIni": "4", - "minParamChange": "0.001", - "minRelChi2Change": "0.9", - "doValPlots": "true" + "signalRegionOuter": { + "values": [ + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922" + ] }, - "hf-lc-tok0sp-candidate-selector": { - "pTCandMin": "0", - "pTCandMax": "50", - "applyPidTPCMinPt": "4", - "pidTPCMinPt": "0", - "pidTPCMaxPt": "100", - "pidCombMaxP": "4", - "nSigmaTPC": "3", - "TPCNClsFindablePIDCut": "50", - "requireTPC": "true" + "sidebandLeftInner": { + "values": [ + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642" + ] }, - "hf-task-lc-tok0sP": { - "selectionFlagLcK0sp": "0", - "cutEtaCandMax": "-1" + "sidebandLeftOuter": { + "values": [ + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754" + ] }, - "hf-task-lc-tok0sP-mc": { - "selectionFlagLc": "0", - "selectionFlagLcbar": "0", - "cutEtaCandMax": "-1" + "sidebandRightInner": { + "values": [ + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978" + ] }, - "qa-tracking-efficiency-electron": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" + "sidebandRightOuter": { + "values": [ + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090" + ] }, - "qa-tracking-efficiency-kaon": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-task-correlation-d-dbar-mc-rec": { + "efficiencyFlagD": "1", + "ptBinsForCorrelations": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] }, - "qa-tracking-efficiency-muon": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" + "signalRegionInner": { + "values": [ + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810" + ] }, - "qa-tracking-efficiency-pion": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" + "signalRegionOuter": { + "values": [ + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922" + ] }, - "qa-tracking-efficiency-proton": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" + "sidebandLeftInner": { + "values": [ + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642" + ] }, - "qa-global-observables": { - "nMinNumberOfContributors": "0", - "nBinsNumberOfTracks": "2000", - "RangeMinNumberOfTracks": "0", - "RangeMaxNumberOfTracks": "2000", - "nBinsVertexPosition": "100", - "RangeMinVertexPositionZ": "-20", - "RangeMaxVertexPositionZ": "20", - "RangeMinVertexPositionXY": "-0.01", - "RangeMaxVertexPositionXY": "0.01", - "nBinsNumberOfContributorsVertex": "200", - "RangeMaxNumberOfContributorsVertex": "200", - "nBinsVertexCovarianceMatrix": "100", - "RangeMinVertexCovarianceMatrix": "-0.01", - "RangeMaxVertexCovarianceMatrix": "0.01" + "sidebandLeftOuter": { + "values": [ + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754" + ] }, - "qa-tracking-kine": { - "nBinsPt": "100", - "nBinsEta": "100", - "nBinsPhi": "100" + "sidebandRightInner": { + "values": [ + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978" + ] }, - "qa-tracking-resolution": { - "useOnlyPhysicsPrimary": "1", - "pdgCode": "0", - "nBinsPt": "100", - "nBinsEta": "60", - "nBinsPhi": "50", - "nBinsDeltaPt": "100", - "nBinsDeltaPhi": "100", - "nBinsDeltaEta": "100", - "nBinsImpactParameter": "2000" + "sidebandRightOuter": { + "values": [ + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090" + ] }, - "internal-dpl-aod-writer": { + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-task-correlation-d-dbar-mc-gen": { + "ptBinsForCorrelations": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] } + }, + "hf-track-index-skims-cascades-creator": { + "doValPlots": "true", + "bZ": "5", + "propDCA": "true", + "maxR": "200", + "maxDZIni": "4", + "minParamChange": "0.001", + "minRelChi2Change": "0.9", + "UseAbsDCA": "true", + "doCutQuality": "true", + "TPCRefit": "true", + "i_minCrossedRows": "50", + "etaMax": "1.1", + "ptMin": "0.05", + "cosPAV0": "0.995", + "dcaXYNegToPV": "0.1", + "dcaXYPosToPVS": "0.1", + "cutInvMassV0": "0.05", + "cutCascPtCandMin": "-1", + "cutCascInvMassLc": "1" + }, + "hf-cand-creator-cascade": { + "bZ": "5", + "propDCA": "true", + "maxR": "200", + "maxDZIni": "4", + "minParamChange": "0.001", + "minRelChi2Change": "0.9", + "doValPlots": "true" + }, + "hf-lc-tok0sp-candidate-selector": { + "pTCandMin": "0", + "pTCandMax": "50", + "applyPidTPCMinPt": "4", + "pidTPCMinPt": "0", + "pidTPCMaxPt": "100", + "pidCombMaxP": "4", + "nSigmaTPC": "3", + "TPCNClsFindablePIDCut": "50", + "requireTPC": "true" + }, + "hf-task-lc-tok0sP": { + "selectionFlagLcK0sp": "0", + "cutEtaCandMax": "-1" + }, + "hf-task-lc-tok0sP-mc": { + "selectionFlagLc": "0", + "selectionFlagLcbar": "0", + "cutEtaCandMax": "-1" + }, + "qa-tracking-efficiency-electron": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-kaon": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-muon": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-pion": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-proton": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-global-observables": { + "nMinNumberOfContributors": "0", + "nBinsNumberOfTracks": "2000", + "RangeMinNumberOfTracks": "0", + "RangeMaxNumberOfTracks": "2000", + "nBinsVertexPosition": "100", + "RangeMinVertexPositionZ": "-20", + "RangeMaxVertexPositionZ": "20", + "RangeMinVertexPositionXY": "-0.01", + "RangeMaxVertexPositionXY": "0.01", + "nBinsNumberOfContributorsVertex": "200", + "RangeMaxNumberOfContributorsVertex": "200", + "nBinsVertexCovarianceMatrix": "100", + "RangeMinVertexCovarianceMatrix": "-0.01", + "RangeMaxVertexCovarianceMatrix": "0.01" + }, + "qa-tracking-kine": { + "nBinsPt": "100", + "nBinsEta": "100", + "nBinsPhi": "100" + }, + "qa-tracking-resolution": { + "useOnlyPhysicsPrimary": "1", + "pdgCode": "0", + "nBinsPt": "100", + "nBinsEta": "60", + "nBinsPhi": "50", + "nBinsDeltaPt": "100", + "nBinsDeltaPhi": "100", + "nBinsDeltaEta": "100", + "nBinsImpactParameter": "2000" + }, + "internal-dpl-aod-writer": { + } } From 62d91e2873f574a90515131d2eb1270c5d7f15df Mon Sep 17 00:00:00 2001 From: mjongerh Date: Tue, 9 Nov 2021 19:22:14 +0100 Subject: [PATCH 39/64] s --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 9a2e9676..3c171d25 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -76,9 +76,9 @@ DOO2_TASK_BPLUS=0 # hf-task-bplus # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi -DOO2_TREE_LB=0 # hf-tree-creator-lb-tolcpi +DOO2_TREE_LB=1 # hf-tree-creator-lb-tolcpi DOO2_TREE_X=0 # hf-tree-creator-x-tojpsipipi -DOO2_TREE_XICC=1 # hf-tree-creator-xicc-topkpipi +DOO2_TREE_XICC=0 # hf-tree-creator-xicc-topkpipi # Correlations DOO2_D0D0BAR_DATA=0 # hf-correlator-d0d0bar DOO2_D0D0BAR_MCREC=0 # hf-correlator-d0d0bar-mc-rec From e1916af6e14caa982f0110835b38393ebf2566af Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 10:37:37 +0100 Subject: [PATCH 40/64] s --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 40a33f46..4d05c28a 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=18 # Input case -NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=10 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From 8c7bc90e11f940a9c4f20278d4d1a7fe2a35a533 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 10:43:16 +0100 Subject: [PATCH 41/64] s --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 4d05c28a..40a33f46 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=18 # Input case -NFILESMAX=10 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From 6d798d0674db3254a1a31c693b1c1052d476569b Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 11:07:12 +0100 Subject: [PATCH 42/64] s --- codeHF/config_tasks.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 3c171d25..3b2811b5 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -76,9 +76,9 @@ DOO2_TASK_BPLUS=0 # hf-task-bplus # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi -DOO2_TREE_LB=1 # hf-tree-creator-lb-tolcpi +DOO2_TREE_LB=0 # hf-tree-creator-lb-tolcpi DOO2_TREE_X=0 # hf-tree-creator-x-tojpsipipi -DOO2_TREE_XICC=0 # hf-tree-creator-xicc-topkpipi +DOO2_TREE_XICC=1 # hf-tree-creator-xicc-topkpipi # Correlations DOO2_D0D0BAR_DATA=0 # hf-correlator-d0d0bar DOO2_D0D0BAR_MCREC=0 # hf-correlator-d0d0bar-mc-rec @@ -99,7 +99,7 @@ APPLYCUTS_CHIC=0 # Apply Chi_c selection cuts. APPLYCUTS_LCK0SP=0 # Apply Λc → K0S p selection cuts. APPLYCUTS_XICC=0 # Apply Ξcc selection cuts. -SAVETREES=1 # Save O2 tables to trees. +SAVETREES=0 # Save O2 tables to trees. USEO2VERTEXER=0 # Use the O2 vertexer in AliPhysics. DORATIO=0 # Plot histogram ratios in comparison. From d432214d2c10a816a30bd49119aa3ff73b0dac98 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 11:09:34 +0100 Subject: [PATCH 43/64] s --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 3b2811b5..c2c278bf 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -76,9 +76,9 @@ DOO2_TASK_BPLUS=0 # hf-task-bplus # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi -DOO2_TREE_LB=0 # hf-tree-creator-lb-tolcpi +DOO2_TREE_LB=1 # hf-tree-creator-lb-tolcpi DOO2_TREE_X=0 # hf-tree-creator-x-tojpsipipi -DOO2_TREE_XICC=1 # hf-tree-creator-xicc-topkpipi +DOO2_TREE_XICC=0 # hf-tree-creator-xicc-topkpipi # Correlations DOO2_D0D0BAR_DATA=0 # hf-correlator-d0d0bar DOO2_D0D0BAR_MCREC=0 # hf-correlator-d0d0bar-mc-rec From 6c7d0a7311bda1fef22639876a2e77a9285f9cc9 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 11:26:24 +0100 Subject: [PATCH 44/64] s --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index c2c278bf..f154e23d 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -14,7 +14,7 @@ #################################################################################################### # Steps -DOCLEAN=1 # Delete created files (before and after running tasks). +DOCLEAN=0 # Delete created files (before and after running tasks). DOCONVERT=1 # Convert AliESDs.root to AO2D.root. DOALI=0 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. @@ -99,7 +99,7 @@ APPLYCUTS_CHIC=0 # Apply Chi_c selection cuts. APPLYCUTS_LCK0SP=0 # Apply Λc → K0S p selection cuts. APPLYCUTS_XICC=0 # Apply Ξcc selection cuts. -SAVETREES=0 # Save O2 tables to trees. +SAVETREES=1 # Save O2 tables to trees. USEO2VERTEXER=0 # Use the O2 vertexer in AliPhysics. DORATIO=0 # Plot histogram ratios in comparison. From 69bdbf4db46517f56db75a3b88d8d0b93f942cf8 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 14:09:40 +0100 Subject: [PATCH 45/64] s --- codeHF/workflows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index 4d31a2f9..7b912a5d 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -242,7 +242,7 @@ workflows: o2-analysis-hf-tree-creator-lb-tolcpi: requires_mc: yes dependencies: o2-analysis-hf-lb-tolcpi-candidate-selector - tables: [HFCANDLBFull, HFCANDLBFullE, HFCANDLBFullP] + tables: [HFCANDLbFull, HFCANDLbFullE, HFCANDLbFullP] o2-analysis-hf-tree-creator-x-tojpsipipi: requires_mc: yes From a22cc366ac946467831bf894ffe24a447038df9e Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 10 Nov 2021 18:06:54 +0100 Subject: [PATCH 46/64] s --- codeHF/config_input.sh | 2 +- codeHF/config_tasks.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 40a33f46..f4b01237 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=18 # Input case -NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=-0 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index f154e23d..3c171d25 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -14,7 +14,7 @@ #################################################################################################### # Steps -DOCLEAN=0 # Delete created files (before and after running tasks). +DOCLEAN=1 # Delete created files (before and after running tasks). DOCONVERT=1 # Convert AliESDs.root to AO2D.root. DOALI=0 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. From 4d9e88b7e1a865c419083c841be086303853c871 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Tue, 16 Nov 2021 12:23:43 +0100 Subject: [PATCH 47/64] s --- codeHF/config_input.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index f4b01237..40a33f46 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -6,7 +6,7 @@ INPUT_CASE=18 # Input case -NFILESMAX=-0 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) +NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) # Number of input files per job (Automatic optimisation on if < 1.) NFILESPERJOB_CONVERT=0 # Conversion From ea5230beb5f7f03d19bc866633f8c6d9893804cd Mon Sep 17 00:00:00 2001 From: mjongerh Date: Tue, 16 Nov 2021 20:15:22 +0100 Subject: [PATCH 48/64] s --- codeHF/workflows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index 943af562..2f4a840f 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -241,7 +241,7 @@ workflows: o2-analysis-hf-tree-creator-lb-tolcpi: requires_mc: yes - dependencies: o2-analysis-hf-lb-tolcpi-candidate-selector + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-alice3-trackextension] tables: [HFCANDLbFull, HFCANDLbFullE, HFCANDLbFullP] o2-analysis-hf-tree-creator-x-tojpsipipi: From 03d1f5170280ad9eb9595df1f4ca6db4e10986b1 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 10:49:28 +0100 Subject: [PATCH 49/64] Update .gitignore --- .gitignore | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.gitignore b/.gitignore index 799e41d8..fbca2df1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,14 +3,3 @@ *.log report/ .DS_Store -/.vs/VSWorkspaceState.json -/.vs/slnx.sqlite -/.vs/Run3Analysisvalidation/v16/Browse.VC.opendb -/.vs/Run3Analysisvalidation/v16/Browse.VC.db-wal -/.vs/Run3Analysisvalidation/v16/Browse.VC.db-shm -/.vs/Run3Analysisvalidation/v16/Browse.VC.db -/.vs/Run3Analysisvalidation/v16/.suo -/.vs/ProjectSettings.json -/.vs/Run3Analysisvalidation/v17 -/.vs/Run3Analysisvalidation/project-colors.json -/.vs/PythonSettings.json From 5276fd08d4d498f60ef836272b30caa847352808 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 10:50:54 +0100 Subject: [PATCH 50/64] Update config_tasks.sh --- codeHF/config_tasks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 54368501..e95dedec 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -16,9 +16,9 @@ # Steps DOCLEAN=1 # Delete created files (before and after running tasks). DOCONVERT=1 # Convert AliESDs.root to AO2D.root. -DOALI=0 # Run AliPhysics tasks. +DOALI=1 # Run AliPhysics tasks. DOO2=1 # Run O2 tasks. -DOPOSTPROCESS=0 # Run output postprocessing. (Compare AliPhysics and O2 output.) +DOPOSTPROCESS=1 # Run output postprocessing. (Compare AliPhysics and O2 output.) # Disable incompatible steps. [ "$ISINPUTO2" -eq 1 ] && { DOCONVERT=0; DOALI=0; } From 438f659db3508decd412bcd41e2e03a1f1619690 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 11:12:28 +0100 Subject: [PATCH 51/64] Update dpl-config_run5_hf.json --- codeHF/dpl-config_run5_hf.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/codeHF/dpl-config_run5_hf.json b/codeHF/dpl-config_run5_hf.json index fba8ca56..cd9f718e 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -626,7 +626,24 @@ }, "hf-task-dplus-mc": { "cutYCandMax": "0.8", - "d_selectionFlagDPlus": "0" + "d_selectionFlagDPlus": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } }, "hf-task-lc": { "cutYCandMax": "2.0", From 810d5ac8a5bfa26d5e6528f5b14932bcabaf48fc Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 11:20:40 +0100 Subject: [PATCH 52/64] Update dpl-config_run5_hf.json --- codeHF/dpl-config_run5_hf.json | 2760 ++++++++++++++++---------------- 1 file changed, 1380 insertions(+), 1380 deletions(-) diff --git a/codeHF/dpl-config_run5_hf.json b/codeHF/dpl-config_run5_hf.json index cd9f718e..e51d0cc3 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -1,525 +1,525 @@ { - "internal-dpl-clock": "", - "internal-dpl-aod-reader": { - "start-value-enumeration": "0", - "end-value-enumeration": "-1", - "step-value-enumeration": "1", - "aod-file": "@list_o2.txt" - }, - "hf-tag-sel-collisions": { - "fillHistograms": "true", - "xVertexMin": "-100", - "xVertexMax": "100", - "yVertexMin": "-100", - "yVertexMax": "100", - "zVertexMin": "-100", - "zVertexMax": "100", - "nContribMin": "0", - "chi2Max": "0", - "triggerClassName": "" - }, - "hf-tag-sel-tracks": { - "fillHistograms": "true", - "bz": "5.", - "doCutQuality": "false", - "tpcNClsFound": "-999999", - "pTBinsTrack": { - "values": [ - "0.", - "0.5", - "1.", - "1.5", - "2.", - "3.", - "100." - ] - }, - "pTMinTrack2Prong": ".3", - "etaMax2Prong": "1.44", - "cutsTrack2Prong": { - "values": [ - [ "0.001", "1.0" ], - [ "0.001", "1.0" ], - [ "0.001", "1.0" ], - [ "0.001", "1.0" ], - [ "0.000", "10." ], - [ "0.000", "10." ] - ] + "internal-dpl-clock": "", + "internal-dpl-aod-reader": { + "start-value-enumeration": "0", + "end-value-enumeration": "-1", + "step-value-enumeration": "1", + "aod-file": "@list_o2.txt" }, - "pTMinTrack3Prong": ".3", - "etaMax3Prong": "1.44", - "cutsTrack3Prong": { - "values": [ - [ "0.001", "1.0" ], - [ "0.001", "1.0" ], - [ "0.001", "1.0" ], - [ "0.001", "1.0" ], - [ "0.000", "10." ], - [ "0.000", "10." ] - ] - } - }, - "hf-track-index-skims-creator": { - "fillHistograms": "true", - "do3prong": "1", - "bz": "5.", - "propToDCA": "true", - "maxRad": "5.", - "maxDZIni": "999.", - "minParamChange": "0.001", - "minRelChi2Change": "0.9", - - "pTBinsD0ToPiK": { - "values": [ - "0.", - "5.", - "1000." - ] + "hf-tag-sel-collisions": { + "fillHistograms": "true", + "xVertexMin": "-100", + "xVertexMax": "100", + "yVertexMin": "-100", + "yVertexMax": "100", + "zVertexMin": "-100", + "zVertexMax": "100", + "nContribMin": "0", + "chi2Max": "0", + "triggerClassName": "" }, - "cutsD0ToPiK": { - "values": [ - [ "1.61", "2.12", "0.5", "0.00" ], - [ "1.61", "2.12", "0.5", "0.00" ] - ] + "hf-tag-sel-tracks": { + "fillHistograms": "true", + "bz": "5.", + "doCutQuality": "false", + "tpcNClsFound": "-999999", + "pTBinsTrack": { + "values": [ + "0.", + "0.5", + "1.", + "1.5", + "2.", + "3.", + "100." + ] + }, + "pTMinTrack2Prong": ".3", + "etaMax2Prong": "1.44", + "cutsTrack2Prong": { + "values": [ + ["0.001", "1.0"], + ["0.001", "1.0"], + ["0.001", "1.0"], + ["0.001", "1.0"], + ["0.000", "10."], + ["0.000", "10."] + ] + }, + "pTMinTrack3Prong": ".3", + "etaMax3Prong": "1.44", + "cutsTrack3Prong": { + "values": [ + ["0.001", "1.0"], + ["0.001", "1.0"], + ["0.001", "1.0"], + ["0.001", "1.0"], + ["0.000", "10."], + ["0.000", "10."] + ] + } }, + "hf-track-index-skims-creator": { + "fillHistograms": "true", + "do3prong": "1", + "bz": "5.", + "propToDCA": "true", + "maxRad": "5.", + "maxDZIni": "999.", + "minParamChange": "0.001", + "minRelChi2Change": "0.9", - "pTBinsJpsiToEE": { - "values": [ - "0.", - "5.", - "1000." - ] - }, - "cutsJpsiToEE": { - "values": [ - [ "2.5", "4.1", "-2.", "1000.00" ], - [ "2.5", "4.1", "-2.", "1000.00" ] - ] - }, + "pTBinsD0ToPiK": { + "values": [ + "0.", + "5.", + "1000." + ] + }, + "cutsD0ToPiK": { + "values": [ + ["1.61", "2.12", "0.5", "0.00"], + ["1.61", "2.12", "0.5", "0.00"] + ] + }, - "pTBinsJpsiToMuMu": { - "values": [ - "0.", - "5.", - "1000." - ] - }, - "cutsJpsiToMuMu": { - "values": [ - [ "2.5", "4.1", "-2.", "1000.00" ], - [ "2.5", "4.1", "-2.", "1000.00" ] - ] - }, + "pTBinsJpsiToEE": { + "values": [ + "0.", + "5.", + "1000." + ] + }, + "cutsJpsiToEE": { + "values": [ + ["2.5", "4.1", "-2.", "1000.00"], + ["2.5", "4.1", "-2.", "1000.00"] + ] + }, - "pTBinsDPlusToPiKPi": { - "values": [ - "2.", - "5.", - "1000." - ] - }, - "cutsDPlusToPiKPi": { - "values": [ - [ "1.67", "2.07", "0.95", "0.05" ], - [ "1.67", "2.07", "0.95", "0.05" ] - ] - }, + "pTBinsJpsiToMuMu": { + "values": [ + "0.", + "5.", + "1000." + ] + }, + "cutsJpsiToMuMu": { + "values": [ + ["2.5", "4.1", "-2.", "1000.00"], + ["2.5", "4.1", "-2.", "1000.00"] + ] + }, - "pTBinsDsToPiKK": { - "values": [ - "1.5", - "5.", - "1000." - ] - }, - "cutsDsToPiKK": { - "values": [ - [ "1.74", "2.18", "0.94", "0.02" ], - [ "1.74", "2.18", "0.94", "0.02" ] - ] - }, + "pTBinsDPlusToPiKPi": { + "values": [ + "2.", + "5.", + "1000." + ] + }, + "cutsDPlusToPiKPi": { + "values": [ + ["1.67", "2.07", "0.95", "0.05"], + ["1.67", "2.07", "0.95", "0.05"] + ] + }, - "pTBinsLcToPKPi": { - "values": [ - "0.5", - "5.", - "1000." - ] + "pTBinsDsToPiKK": { + "values": [ + "1.5", + "5.", + "1000." + ] + }, + "cutsDsToPiKK": { + "values": [ + ["1.74", "2.18", "0.94", "0.02"], + ["1.74", "2.18", "0.94", "0.02"] + ] + }, + + "pTBinsLcToPKPi": { + "values": [ + "0.5", + "5.", + "1000." + ] + }, + "cutsLcToPKPi": { + "values": [ + ["1.98", "2.58", "0.8", "0.0"], + ["1.98", "2.58", "0.8", "0.0"] + ] + }, + + "pTBinsXicToPKPi": { + "values": [ + "1.", + "5.", + "1000." + ] + }, + "cutsXicToPKPi": { + "values": [ + ["2.10", "2.80", "-2.", "0.0"], + ["2.10", "2.80", "-2.", "0.0"] + ] + } }, - "cutsLcToPKPi": { - "values": [ - [ "1.98", "2.58", "0.8", "0.0" ], - [ "1.98", "2.58", "0.8", "0.0" ] - ] + "hf-cand-creator-2prong": { + "d_bz": "5.", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true" }, - - "pTBinsXicToPKPi": { - "values": [ - "1.", - "5.", - "1000." - ] + "hf-cand-creator-3prong": { + "d_bz": "5.", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true" }, - "cutsXicToPKPi": { - "values": [ - [ "2.10", "2.80", "-2.", "0.0" ], - [ "2.10", "2.80", "-2.", "0.0" ] - ] - } - }, - "hf-cand-creator-2prong": { - "d_bz": "5.", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true" - }, - "hf-cand-creator-3prong": { - "d_bz": "5.", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true" - }, - "hf-cand-creator-xicc": { - "d_bz": "20", - "b_propdca": "true", - "d_maxr": "5.", - "d_maxdzini": "999.", - "d_minparamchange": "0.001", - "d_minrelchi2change": "0.9", - "b_dovalplots": "true", - "d_selectionFlagXic": "1", - "cutPtPionMin": "0.2" - }, - "hf-d0-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "1000.", - "d_pidTOFMaxpT": "2000.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTPCCombined": "500.", - "d_nSigmaTOF": "300.", - "d_nSigmaTOFCombined": "5000.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "1.5", - "2", - "2.5", - "3", - "3.5", - "4", - "4.5", - "5", - "5.5", - "6", - "6.5", - "7", - "7.5", - "8", - "9", - "10", - "12", - "16", - "20", - "24", - "36", - "50", - "100" - ] + "hf-cand-creator-xicc": { + "d_bz": "20", + "b_propdca": "true", + "d_maxr": "5.", + "d_maxdzini": "999.", + "d_minparamchange": "0.001", + "d_minrelchi2change": "0.9", + "b_dovalplots": "true", + "d_selectionFlagXic": "1", + "cutPtPionMin": "0.2" }, - "D0_to_pi_K_cuts": { - "values": [ - [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "10.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], - [ "0.4", "0.030", "1.0", "0.6", "0.6", "0.1", "0.1", "1000.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ] - ] - } - }, - "hf-dplus-topikpi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "1000.", - "d_pidTOFMaxpT": "2000.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "300.", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] + "hf-d0-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "1000.", + "d_pidTOFMaxpT": "2000.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTPCCombined": "500.", + "d_nSigmaTOF": "300.", + "d_nSigmaTOFCombined": "5000.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "1.5", + "2", + "2.5", + "3", + "3.5", + "4", + "4.5", + "5", + "5.5", + "6", + "6.5", + "7", + "7.5", + "8", + "9", + "10", + "12", + "16", + "20", + "24", + "36", + "50", + "100" + ] + }, + "D0_to_pi_K_cuts": { + "values": [ + [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.035", "0.8", "0.5", "0.5", "0.1", "0.1", "-5.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.4", "0.4", "0.1", "0.1", "-25.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-20.e-5", "0.90", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-12.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-8.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.8", "0.7", "0.7", "0.1", "0.1", "-7.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "0.9", "0.7", "0.7", "0.1", "0.1", "-5.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "10.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.7", "0.7", "0.1", "0.1", "1000.e-5", "0.85", "0.", "0.", "10.0", "10.0", "0.06" ], + [ "0.4", "0.030", "1.0", "0.6", "0.6", "0.1", "0.1", "1000.e-5", "0.80", "0.", "0.", "10.0", "10.0", "0.06" ] + ] + } }, - "DPlus_to_Pi_K_Pi_cuts": { - "values": [ - [ "0.2", "0.3", "0.3", "0.07", "6.", "0.96", "0.985", "2.5" ], - [ "0.2", "0.3", "0.3", "0.07", "5.", "0.96", "0.985", "2.5" ], - [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.980", "2.5" ], - [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5" ], - [ "0.2", "0.3", "0.3", "0.20", "5.", "0.94", "0.000", "2.5" ] - ] - } - }, - "hf-lc-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_FilterPID": "false", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "1000.", - "d_pidTOFMaxpT": "2000.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTPCCombined": "500.", - "d_nSigmaTOF": "300.", - "d_nSigmaTOFCombined": "5000.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "10", - "24", - "36" - ] + "hf-dplus-topikpi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "1000.", + "d_pidTOFMaxpT": "2000.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "300.", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + }, + "DPlus_to_Pi_K_Pi_cuts": { + "values": [ + ["0.2", "0.3", "0.3", "0.07", "6.", "0.96", "0.985", "2.5"], + ["0.2", "0.3", "0.3", "0.07", "5.", "0.96", "0.985", "2.5"], + ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.980", "2.5"], + ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.10", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.12", "5.", "0.96", "0.000", "2.5"], + ["0.2", "0.3", "0.3", "0.20", "5.", "0.94", "0.000", "2.5"] + ] + } }, - "Lc_to_p_K_pi_cuts": { - "values": [ - [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.2", "0.2", "0.2", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.3", "0.3", "0.3", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8" ] - ] - } - }, - "hf-xic-topkpi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_FilterPID": "true", - "d_pidTPCMinpT": "0.15", - "d_pidTPCMaxpT": "1.0", - "d_pidTOFMinpT": "0.5", - "d_pidTOFMaxpT": "4.0", - "d_TPCNClsFindablePIDCut": "70.", - "d_nSigmaTPC": "3.", - "d_nSigmaTPCCombined": "5.", - "d_nSigmaTOF": "3.", - "d_nSigmaTOFCombined": "5.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] + "hf-lc-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_FilterPID": "false", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "1000.", + "d_pidTOFMaxpT": "2000.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTPCCombined": "500.", + "d_nSigmaTOF": "300.", + "d_nSigmaTOFCombined": "5000.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "10", + "24", + "36" + ] + }, + "Lc_to_p_K_pi_cuts": { + "values": [ + [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.1", "0.1", "0.1", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.2", "0.2", "0.2", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.3", "0.3", "0.3", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "5.e-5", "0.004", "0.8"] + ] + } }, - "Xic_to_p_K_pi_cuts": { - "values": [ - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ], - [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8" ] - ] - } - }, - "hf-jpsi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "0.15", - "d_pidTOFMaxpT": "15.", - "d_pidRICHMinpT": "0.15", - "d_pidRICHMaxpT": "15.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "3.", - "d_nSigmaRICH": "3.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "15" - ] + "hf-xic-topkpi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_FilterPID": "true", + "d_pidTPCMinpT": "0.15", + "d_pidTPCMaxpT": "1.0", + "d_pidTOFMinpT": "0.5", + "d_pidTOFMaxpT": "4.0", + "d_TPCNClsFindablePIDCut": "70.", + "d_nSigmaTPC": "3.", + "d_nSigmaTPCCombined": "5.", + "d_nSigmaTOF": "3.", + "d_nSigmaTOFCombined": "5.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + }, + "Xic_to_p_K_pi_cuts": { + "values": [ + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"], + [ "0.300", "0.4", "0.4", "0.4", "1.e-5", "0.005", "0.8"] + ] + } }, - "Jpsi_to_ee_cuts": { - "values": [ - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ], - [ "0.5", "0.2", "0.4", "0.5", "1." ] - ] - } - }, - "hf-x-tojpsipipi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "0.", - "d_pidTOFMaxpT": "10.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "3.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "15" - ] + "hf-jpsi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.15", + "d_pidTOFMaxpT": "15.", + "d_pidRICHMinpT": "0.15", + "d_pidRICHMaxpT": "15.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "d_nSigmaRICH": "3.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "15" + ] + }, + "Jpsi_to_ee_cuts": { + "values": [ + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."], + ["0.5", "0.2", "0.4", "0.5", "1."] + ] + } }, - "X_to_jpsipipi_cuts": { - "values": [ - [ "0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1." ], - [ "0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1." ], - [ "0.5", "0.80", "0.001", "0.001", "0.2", "0.15", "1." ], - [ "0.5", "0.80", "0.001", "0.001", "0.9", "0.15", "1." ], - [ "0.5", "0.80", "0.001", "0.001", "1.5", "0.15", "1." ], - [ "0.5", "0.80", "0.001", "0.001", "2.3", "0.15", "1." ], - [ "0.5", "0.90", "0.001", "0.001", "3.0", "0.15", "1." ], - [ "0.5", "0.90", "0.001", "0.001", "4.2", "0.15", "1." ], - [ "0.5", "0.90", "0.001", "0.001", "6.2", "0.15", "1." ] - ] - } - }, - "hf-xicc-to-p-k-pi-pi-candidate-selector": { - "d_pTCandMin": "0.", - "d_pTCandMax": "36.", - "d_FilterPID": "true", - "d_pidTPCMinpT": "9999.", - "d_pidTPCMaxpT": "99999.", - "d_pidTOFMinpT": "0.15", - "d_pidTOFMaxpT": "5.", - "d_nSigmaTPC": "9999.", - "d_nSigmaTPCCombined": "9999.", - "d_nSigmaTOF": "3.", - "d_nSigmaTOFCombined": "5.", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] + "hf-x-tojpsipipi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.", + "d_pidTOFMaxpT": "10.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "15" + ] + }, + "X_to_jpsipipi_cuts": { + "values": [ + ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "0.0", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "0.2", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "0.9", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "1.5", "0.15", "1."], + ["0.5", "0.80", "0.001", "0.001", "2.3", "0.15", "1."], + ["0.5", "0.90", "0.001", "0.001", "3.0", "0.15", "1."], + ["0.5", "0.90", "0.001", "0.001", "4.2", "0.15", "1."], + ["0.5", "0.90", "0.001", "0.001", "6.2", "0.15", "1."] + ] + } }, - "Xicc_to_p_K_pi_pi_cuts": { - "values": [ - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ], - [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9" ] - ] - } - }, - "hf-lb-tolcpi-candidate-selector": { + "hf-xicc-to-p-k-pi-pi-candidate-selector": { + "d_pTCandMin": "0.", + "d_pTCandMax": "36.", + "d_FilterPID": "true", + "d_pidTPCMinpT": "9999.", + "d_pidTPCMaxpT": "99999.", + "d_pidTOFMinpT": "0.15", + "d_pidTOFMaxpT": "5.", + "d_nSigmaTPC": "9999.", + "d_nSigmaTPCCombined": "9999.", + "d_nSigmaTOF": "3.", + "d_nSigmaTOFCombined": "5.", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + }, + "Xicc_to_p_K_pi_pi_cuts": { + "values": [ + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"], + [ "0.100", "0.5", "0.2", "1.e-3", "10.0", "1.e-3", "10.0", "9999.", "1.e-3", "0.001", "50", "50", "0.985", "0.9"] + ] + } + }, + "hf-lb-tolcpi-candidate-selector": { "d_pTCandMin": "3.", "d_pTCandMax": "50.", "d_pidTPCMinpT": "1000.", @@ -563,896 +563,896 @@ ] } }, - "hf-task-d0": { - "cutYCandMax": "0.8", - "d_selectionFlagD0": "0", - "d_selectionFlagD0bar": "0", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "1.5", - "2", - "2.5", - "3", - "3.5", - "4", - "4.5", - "5", - "5.5", - "6", - "6.5", - "7", - "7.5", - "8", - "9", - "10", - "12", - "16", - "20", - "24", - "36", - "50", - "100" - ] - } - }, - "hf-task-d0-mc": { - "cutYCandMax": "0.8", - "d_selectionFlagD0": "0", - "d_selectionFlagD0bar": "0" - }, - "hf-task-dplus": { - "cutYCandMax": "0.8", - "d_selectionFlagDPlus": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-dplus-mc": { - "cutYCandMax": "0.8", - "d_selectionFlagDPlus": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-lc": { - "cutYCandMax": "2.0", - "d_selectionFlagLc": "0", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - } - }, - "hf-task-lc-mc": { - "cutYCandMax": "2.0", - "d_selectionFlagLc": "0", - "pTBins": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "8", - "12", - "24", - "36" - ] - } - }, - "hf-task-xic": { - "cutEtaCandMax": "-1", - "d_selectionFlagXic": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-xic-mc": { - "cutEtaCandMax": "-1", - "d_selectionFlagXic": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-jpsi": { - "cutYCandMax": "1.44", - "d_selectionFlagJpsi": "0", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "15" - ] - } - }, - "hf-task-jpsi-mc": { - "cutYCandMax": "1.44", - "d_selectionFlagJpsi": "0" - }, - "hf-candidate-creator-x": { - "cutYCandMax": "1.44", - "d_selectionFlagJpsi": "0" - }, - "hf-task-x": { - "cutYCandMax": "1.44", - "d_selectionFlagX": "0" - }, - "hf-task-x-mc": { - "cutYCandMax": "1.44", - "d_selectionFlagX": "0" - }, - "hf-task-xicc": { - "cutYCandMax": "-1", - "d_selectionFlagXicc": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-task-xicc-mc": { - "cutYCandMax": "-1", - "d_selectionFlagXicc": "0", - "pTBins": { - "values": [ - "1.", - "2.", - "3.", - "4.", - "5.", - "6.", - "7.", - "8.", - "10.", - "12.", - "16.", - "24.", - "36." - ] - } - }, - "hf-correlator-d0-d0bar": { - "efficiencyFlagD": "1", - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } - }, - "hf-correlator-d0-d0bar-mc-rec": { - "efficiencyFlagD": "1", - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } - }, - "hf-correlator-d0-d0bar-mc-gen": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-correlator-d0-d0bar-ls": { - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-correlator-d0-d0bar-mc-rec-ls": { - "selectionFlagD0": "1", - "selectionFlagD0bar": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-correlator-d0-d0bar-mc-gen-ls": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-correlator-dplus-dminus": { - "efficiencyFlagD": "1", - "selectionFlagDplus": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "-999.", - "0.019", - "0.060", - "0.079", - "0.136", - "0.195", - "0.248", - "0.299", - "0.310", - "0.384", - "0.450", - "0.500" - ] - } - }, - "hf-correlator-dplus-dminus-mc-rec": { - "efficiencyFlagD": "1", - "selectionFlagDplus": "1", - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "multMin": "0.", - "multMax": "100000.", - "efficiencyDmeson": { - "values": [ - "-999.", - "0.019", - "0.060", - "0.079", - "0.136", - "0.195", - "0.248", - "0.299", - "0.310", - "0.384", - "0.450", - "0.500" - ] - } - }, - "hf-correlator-dplus-dminus-mc-gen": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-correlator-c-cbar-mc-gen": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-correlator-c-cbar-mc-gen-ls": { - "cutYCandMax": "1.44", - "cutPtCandMin": "-1", - "ptBinsForMass": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] - } - }, - "hf-task-correlation-d-dbar": { - "efficiencyFlagD": "1", - "ptBinsForCorrelations": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] + "hf-task-d0": { + "cutYCandMax": "0.8", + "d_selectionFlagD0": "0", + "d_selectionFlagD0bar": "0", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "1.5", + "2", + "2.5", + "3", + "3.5", + "4", + "4.5", + "5", + "5.5", + "6", + "6.5", + "7", + "7.5", + "8", + "9", + "10", + "12", + "16", + "20", + "24", + "36", + "50", + "100" + ] + } }, - "signalRegionInner": { - "values": [ - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810" - ] + "hf-task-d0-mc": { + "cutYCandMax": "0.8", + "d_selectionFlagD0": "0", + "d_selectionFlagD0bar": "0" }, - "signalRegionOuter": { - "values": [ - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922" - ] + "hf-task-dplus": { + "cutYCandMax": "0.8", + "d_selectionFlagDPlus": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } }, - "sidebandLeftInner": { - "values": [ - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642" - ] + "hf-task-dplus-mc": { + "cutYCandMax": "0.8", + "d_selectionFlagDPlus": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } }, - "sidebandLeftOuter": { - "values": [ - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754" - ] + "hf-task-lc": { + "cutYCandMax": "2.0", + "d_selectionFlagLc": "0", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + } }, - "sidebandRightInner": { - "values": [ - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978" - ] + "hf-task-lc-mc": { + "cutYCandMax": "2.0", + "d_selectionFlagLc": "0", + "pTBins": { + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "8", + "12", + "24", + "36" + ] + } }, - "sidebandRightOuter": { - "values": [ - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090" - ] + "hf-task-xic": { + "cutEtaCandMax": "-1", + "d_selectionFlagXic": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } }, - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } - }, - "hf-task-correlation-d-dbar-mc-rec": { - "efficiencyFlagD": "1", - "ptBinsForCorrelations": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] + "hf-task-xic-mc": { + "cutEtaCandMax": "-1", + "d_selectionFlagXic": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } }, - "signalRegionInner": { - "values": [ - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810", - "1.810" - ] + "hf-task-jpsi": { + "cutYCandMax": "1.44", + "d_selectionFlagJpsi": "0", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "15" + ] + } }, - "signalRegionOuter": { - "values": [ - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922", - "1.922" - ] + "hf-task-jpsi-mc": { + "cutYCandMax": "1.44", + "d_selectionFlagJpsi": "0" }, - "sidebandLeftInner": { - "values": [ - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642", - "1.642" - ] + "hf-candidate-creator-x": { + "cutYCandMax": "1.44", + "d_selectionFlagJpsi": "0" }, - "sidebandLeftOuter": { - "values": [ - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754", - "1.754" - ] + "hf-task-x": { + "cutYCandMax": "1.44", + "d_selectionFlagX": "0" }, - "sidebandRightInner": { - "values": [ - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978", - "1.978" - ] + "hf-task-x-mc": { + "cutYCandMax": "1.44", + "d_selectionFlagX": "0" }, - "sidebandRightOuter": { - "values": [ - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090", - "2.090" - ] + "hf-task-xicc": { + "cutYCandMax": "-1", + "d_selectionFlagXicc": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } }, - "efficiencyDmeson": { - "values": [ - "0.030", - "0.045", - "0.059", - "0.077", - "0.097", - "0.119", - "0.137", - "0.149", - "0.167", - "0.179", - "0.197", - "0.210", - "0.228", - "0.242", - "0.263", - "0.289", - "0.335", - "0.380", - "0.420", - "0.510", - "0.550", - "0.600", - "0.600", - "0.600", - "0.600" - ] - } - }, - "hf-task-correlation-d-dbar-mc-gen": { - "ptBinsForCorrelations": { - "values": [ - "0", - "2", - "4", - "6", - "8", - "12", - "16", - "24", - "99" - ] + "hf-task-xicc-mc": { + "cutYCandMax": "-1", + "d_selectionFlagXicc": "0", + "pTBins": { + "values": [ + "1.", + "2.", + "3.", + "4.", + "5.", + "6.", + "7.", + "8.", + "10.", + "12.", + "16.", + "24.", + "36." + ] + } + }, + "hf-correlator-d0-d0bar": { + "efficiencyFlagD": "1", + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-correlator-d0-d0bar-mc-rec": { + "efficiencyFlagD": "1", + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-correlator-d0-d0bar-mc-gen": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-d0-d0bar-ls": { + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-d0-d0bar-mc-rec-ls": { + "selectionFlagD0": "1", + "selectionFlagD0bar": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-d0-d0bar-mc-gen-ls": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-dplus-dminus": { + "efficiencyFlagD": "1", + "selectionFlagDplus": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "-999.", + "0.019", + "0.060", + "0.079", + "0.136", + "0.195", + "0.248", + "0.299", + "0.310", + "0.384", + "0.450", + "0.500" + ] + } + }, + "hf-correlator-dplus-dminus-mc-rec": { + "efficiencyFlagD": "1", + "selectionFlagDplus": "1", + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "multMin": "0.", + "multMax": "100000.", + "efficiencyDmeson": { + "values": [ + "-999.", + "0.019", + "0.060", + "0.079", + "0.136", + "0.195", + "0.248", + "0.299", + "0.310", + "0.384", + "0.450", + "0.500" + ] + } + }, + "hf-correlator-dplus-dminus-mc-gen": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-c-cbar-mc-gen": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-correlator-c-cbar-mc-gen-ls": { + "cutYCandMax": "1.44", + "cutPtCandMin": "-1", + "ptBinsForMass": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-task-correlation-d-dbar": { + "efficiencyFlagD": "1", + "ptBinsForCorrelations": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + }, + "signalRegionInner": { + "values": [ + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810" + ] + }, + "signalRegionOuter": { + "values": [ + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922" + ] + }, + "sidebandLeftInner": { + "values": [ + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642" + ] + }, + "sidebandLeftOuter": { + "values": [ + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754" + ] + }, + "sidebandRightInner": { + "values": [ + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978" + ] + }, + "sidebandRightOuter": { + "values": [ + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090" + ] + }, + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-task-correlation-d-dbar-mc-rec": { + "efficiencyFlagD": "1", + "ptBinsForCorrelations": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + }, + "signalRegionInner": { + "values": [ + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810", + "1.810" + ] + }, + "signalRegionOuter": { + "values": [ + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922", + "1.922" + ] + }, + "sidebandLeftInner": { + "values": [ + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642", + "1.642" + ] + }, + "sidebandLeftOuter": { + "values": [ + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754", + "1.754" + ] + }, + "sidebandRightInner": { + "values": [ + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978", + "1.978" + ] + }, + "sidebandRightOuter": { + "values": [ + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090", + "2.090" + ] + }, + "efficiencyDmeson": { + "values": [ + "0.030", + "0.045", + "0.059", + "0.077", + "0.097", + "0.119", + "0.137", + "0.149", + "0.167", + "0.179", + "0.197", + "0.210", + "0.228", + "0.242", + "0.263", + "0.289", + "0.335", + "0.380", + "0.420", + "0.510", + "0.550", + "0.600", + "0.600", + "0.600", + "0.600" + ] + } + }, + "hf-task-correlation-d-dbar-mc-gen": { + "ptBinsForCorrelations": { + "values": [ + "0", + "2", + "4", + "6", + "8", + "12", + "16", + "24", + "99" + ] + } + }, + "hf-track-index-skims-cascades-creator": { + "doValPlots": "true", + "bZ": "5", + "propDCA": "true", + "maxR": "200", + "maxDZIni": "4", + "minParamChange": "0.001", + "minRelChi2Change": "0.9", + "UseAbsDCA": "true", + "doCutQuality": "true", + "TPCRefit": "true", + "i_minCrossedRows": "50", + "etaMax": "1.1", + "ptMin": "0.05", + "cosPAV0": "0.995", + "dcaXYNegToPV": "0.1", + "dcaXYPosToPVS": "0.1", + "cutInvMassV0": "0.05", + "cutCascPtCandMin": "-1", + "cutCascInvMassLc": "1" + }, + "hf-cand-creator-cascade": { + "bZ": "5", + "propDCA": "true", + "maxR": "200", + "maxDZIni": "4", + "minParamChange": "0.001", + "minRelChi2Change": "0.9", + "doValPlots": "true" + }, + "hf-lc-tok0sp-candidate-selector": { + "pTCandMin": "0", + "pTCandMax": "50", + "applyPidTPCMinPt": "4", + "pidTPCMinPt": "0", + "pidTPCMaxPt": "100", + "pidCombMaxP": "4", + "nSigmaTPC": "3", + "TPCNClsFindablePIDCut": "50", + "requireTPC": "true" + }, + "hf-task-lc-tok0sP": { + "selectionFlagLcK0sp": "0", + "cutEtaCandMax": "-1" + }, + "hf-task-lc-tok0sP-mc": { + "selectionFlagLc": "0", + "selectionFlagLcbar": "0", + "cutEtaCandMax": "-1" + }, + "qa-tracking-efficiency-electron": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-kaon": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-muon": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-pion": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-tracking-efficiency-proton": { + "eta-min": "-3", + "eta-max": "3", + "phi-min": "0", + "phi-max": "6.28318977", + "pt-min": "0", + "pt-max": "5", + "pt-bins": "500", + "log-pt": "0", + "eta-bins": "500", + "phi-bins": "500", + "sel-prim": "1", + "make-eff": "0" + }, + "qa-global-observables": { + "nMinNumberOfContributors": "0", + "nBinsNumberOfTracks": "2000", + "RangeMinNumberOfTracks": "0", + "RangeMaxNumberOfTracks": "2000", + "nBinsVertexPosition": "100", + "RangeMinVertexPositionZ": "-20", + "RangeMaxVertexPositionZ": "20", + "RangeMinVertexPositionXY": "-0.01", + "RangeMaxVertexPositionXY": "0.01", + "nBinsNumberOfContributorsVertex": "200", + "RangeMaxNumberOfContributorsVertex": "200", + "nBinsVertexCovarianceMatrix": "100", + "RangeMinVertexCovarianceMatrix": "-0.01", + "RangeMaxVertexCovarianceMatrix": "0.01" + }, + "qa-tracking-kine": { + "nBinsPt": "100", + "nBinsEta": "100", + "nBinsPhi": "100" + }, + "qa-tracking-resolution": { + "useOnlyPhysicsPrimary": "1", + "pdgCode": "0", + "nBinsPt": "100", + "nBinsEta": "60", + "nBinsPhi": "50", + "nBinsDeltaPt": "100", + "nBinsDeltaPhi": "100", + "nBinsDeltaEta": "100", + "nBinsImpactParameter": "2000" + }, + "internal-dpl-aod-writer": { } - }, - "hf-track-index-skims-cascades-creator": { - "doValPlots": "true", - "bZ": "5", - "propDCA": "true", - "maxR": "200", - "maxDZIni": "4", - "minParamChange": "0.001", - "minRelChi2Change": "0.9", - "UseAbsDCA": "true", - "doCutQuality": "true", - "TPCRefit": "true", - "i_minCrossedRows": "50", - "etaMax": "1.1", - "ptMin": "0.05", - "cosPAV0": "0.995", - "dcaXYNegToPV": "0.1", - "dcaXYPosToPVS": "0.1", - "cutInvMassV0": "0.05", - "cutCascPtCandMin": "-1", - "cutCascInvMassLc": "1" - }, - "hf-cand-creator-cascade": { - "bZ": "5", - "propDCA": "true", - "maxR": "200", - "maxDZIni": "4", - "minParamChange": "0.001", - "minRelChi2Change": "0.9", - "doValPlots": "true" - }, - "hf-lc-tok0sp-candidate-selector": { - "pTCandMin": "0", - "pTCandMax": "50", - "applyPidTPCMinPt": "4", - "pidTPCMinPt": "0", - "pidTPCMaxPt": "100", - "pidCombMaxP": "4", - "nSigmaTPC": "3", - "TPCNClsFindablePIDCut": "50", - "requireTPC": "true" - }, - "hf-task-lc-tok0sP": { - "selectionFlagLcK0sp": "0", - "cutEtaCandMax": "-1" - }, - "hf-task-lc-tok0sP-mc": { - "selectionFlagLc": "0", - "selectionFlagLcbar": "0", - "cutEtaCandMax": "-1" - }, - "qa-tracking-efficiency-electron": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" - }, - "qa-tracking-efficiency-kaon": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" - }, - "qa-tracking-efficiency-muon": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" - }, - "qa-tracking-efficiency-pion": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" - }, - "qa-tracking-efficiency-proton": { - "eta-min": "-3", - "eta-max": "3", - "phi-min": "0", - "phi-max": "6.28318977", - "pt-min": "0", - "pt-max": "5", - "pt-bins": "500", - "log-pt": "0", - "eta-bins": "500", - "phi-bins": "500", - "sel-prim": "1", - "make-eff": "0" - }, - "qa-global-observables": { - "nMinNumberOfContributors": "0", - "nBinsNumberOfTracks": "2000", - "RangeMinNumberOfTracks": "0", - "RangeMaxNumberOfTracks": "2000", - "nBinsVertexPosition": "100", - "RangeMinVertexPositionZ": "-20", - "RangeMaxVertexPositionZ": "20", - "RangeMinVertexPositionXY": "-0.01", - "RangeMaxVertexPositionXY": "0.01", - "nBinsNumberOfContributorsVertex": "200", - "RangeMaxNumberOfContributorsVertex": "200", - "nBinsVertexCovarianceMatrix": "100", - "RangeMinVertexCovarianceMatrix": "-0.01", - "RangeMaxVertexCovarianceMatrix": "0.01" - }, - "qa-tracking-kine": { - "nBinsPt": "100", - "nBinsEta": "100", - "nBinsPhi": "100" - }, - "qa-tracking-resolution": { - "useOnlyPhysicsPrimary": "1", - "pdgCode": "0", - "nBinsPt": "100", - "nBinsEta": "60", - "nBinsPhi": "50", - "nBinsDeltaPt": "100", - "nBinsDeltaPhi": "100", - "nBinsDeltaEta": "100", - "nBinsImpactParameter": "2000" - }, - "internal-dpl-aod-writer": { - } } From b5ade1b16774312e9a29d366dec4c8b9be95ebab Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 11:48:27 +0100 Subject: [PATCH 53/64] Update dpl-config_run5_hf.json Fix format --- codeHF/dpl-config_run5_hf.json | 84 +++++++++++++++++----------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/codeHF/dpl-config_run5_hf.json b/codeHF/dpl-config_run5_hf.json index e51d0cc3..7b288329 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -520,49 +520,49 @@ } }, "hf-lb-tolcpi-candidate-selector": { - "d_pTCandMin": "3.", - "d_pTCandMax": "50.", - "d_pidTPCMinpT": "1000.", - "d_pidTPCMaxpT": "2000.", - "d_pidTOFMinpT": "0.", - "d_pidTOFMaxpT": "10.", - "d_TPCNClsFindablePIDCut": "-9999", - "d_nSigmaTPC": "1000.", - "d_nSigmaTOF": "3.", - "pTBins": { - "values": [ - "0", - "0.5", - "1", - "2", - "3", - "4", - "5", - "7", - "10", - "13", - "16", - "20", - "24" - ] + "d_pTCandMin": "3.", + "d_pTCandMax": "50.", + "d_pidTPCMinpT": "1000.", + "d_pidTPCMaxpT": "2000.", + "d_pidTOFMinpT": "0.", + "d_pidTOFMaxpT": "10.", + "d_TPCNClsFindablePIDCut": "-9999", + "d_nSigmaTPC": "1000.", + "d_nSigmaTOF": "3.", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "13", + "16", + "20", + "24" + ] + }, + "Lb_to_lcpi_cuts": { + "values": [ + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.99", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], + [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ] + ] + } }, - "Lb_to_lcpi_cuts": { - "values": [ - [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.98", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.99", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.003", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ], - [ "1.", "0.994", "0.0001", "0.002", "0.0015", "1.0", "0.5", "0.05", "0.05", "0.02", "0.5", "0.8" ] - ] - } - }, "hf-task-d0": { "cutYCandMax": "0.8", "d_selectionFlagD0": "0", From 4f9cb988737e8af7d2aa593c501f53fe7d06c5eb Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 11:50:15 +0100 Subject: [PATCH 54/64] Update config_tasks.sh --- codeHF/config_tasks.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index e95dedec..64c41f30 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -62,7 +62,7 @@ DOO2_SEL_LCK0SP=0 # hf-lc-tok0sp-candidate-selector DOO2_SEL_XICC=0 # hf-xicc-topkpipi-candidate-selector DOO2_SEL_BPLUS=0 # hf-bplus-tod0pi-candidate-selector # User tasks -DOO2_TASK_D0=0 # hf-task-d0 +DOO2_TASK_D0=1 # hf-task-d0 DOO2_TASK_DPLUS=0 # hf-task-dplus DOO2_TASK_LC=0 # hf-task-lc DOO2_TASK_LB=0 # hf-task-lb @@ -76,7 +76,7 @@ DOO2_TASK_BPLUS=0 # hf-task-bplus # Tree creators DOO2_TREE_D0=0 # hf-tree-creator-d0-tokpi DOO2_TREE_LC=0 # hf-tree-creator-lc-topkpi -DOO2_TREE_LB=1 # hf-tree-creator-lb-tolcpi +DOO2_TREE_LB=0 # hf-tree-creator-lb-tolcpi DOO2_TREE_X=0 # hf-tree-creator-x-tojpsipipi DOO2_TREE_XICC=0 # hf-tree-creator-xicc-topkpipi # Correlations @@ -99,7 +99,7 @@ APPLYCUTS_CHIC=0 # Apply Chi_c selection cuts. APPLYCUTS_LCK0SP=0 # Apply Λc → K0S p selection cuts. APPLYCUTS_XICC=0 # Apply Ξcc selection cuts. -SAVETREES=1 # Save O2 tables to trees. +SAVETREES=0 # Save O2 tables to trees. USEO2VERTEXER=0 # Use the O2 vertexer in AliPhysics. DORATIO=0 # Plot histogram ratios in comparison. From b6c9eb95881ca713e696ddf61830c3150e7e7b37 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 11:50:52 +0100 Subject: [PATCH 55/64] Update config_input.sh --- codeHF/config_input.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/codeHF/config_input.sh b/codeHF/config_input.sh index 40a33f46..1aecfca8 100644 --- a/codeHF/config_input.sh +++ b/codeHF/config_input.sh @@ -4,7 +4,7 @@ # Input specification for runtest.sh # (Modifies input parameters.) -INPUT_CASE=18 # Input case +INPUT_CASE=2 # Input case NFILESMAX=1 # Maximum number of processed input files. (Set to -0 to process all; to -N to process all but the last N files.) @@ -139,12 +139,4 @@ case $INPUT_CASE in ISINPUTO2=1 ISALICE3=1 ISMC=1;; - 18) - INPUT_LABEL="Run 5, p-p MC 14 TeV bbar-enriched, HF analysis" - INPUT_DIR="/home/mmazzill/pp14TeV_bbbar_10M_2T_13102021" - INPUT_FILES="AODRun5.*.root" - JSON="$JSONRUN5_HF" - ISINPUTO2=1 - ISALICE3=1 - ISMC=1;; esac From a4f0d1f1be0727beffbc71ac875de0bd98588aae Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 11:51:24 +0100 Subject: [PATCH 56/64] Update config_tasks.sh --- codeHF/config_tasks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 64c41f30..44d5221b 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -87,7 +87,6 @@ DOO2_DPLUSDMINUS_DATA=0 # hf-correlator-dplusdminus DOO2_DPLUSDMINUS_MCREC=0 # hf-correlator-dplusdminus-mc-rec DOO2_DPLUSDMINUS_MCGEN=0 # hf-correlator-dplusdminus-mc-gen - # Selection cuts APPLYCUTS_D0=0 # Apply D0 selection cuts. APPLYCUTS_DPLUS=0 # Apply D+ selection cuts. From 3a8c60083b2d5ee84eb8557fa25f85a9d32780e2 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 12:01:10 +0100 Subject: [PATCH 57/64] Update .gitignore From 6cc90054520078fbb415e72ce96f5d56c4980fff Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 12:35:15 +0100 Subject: [PATCH 58/64] Update .gitignore fix format From 5791774d0b3f0d664a20cf46b3ec4f096b951b88 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 14:03:50 +0100 Subject: [PATCH 59/64] Update workflows.yml Fix dependecies --- codeHF/workflows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index 2f4a840f..bc04bca4 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -188,7 +188,7 @@ workflows: o2-analysis-hf-task-lb: <<: *task - dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-alice3-trackextension] + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-alice3-trackextension, o2-analysis-alice3-centrality] o2-analysis-hf-task-xic: <<: *task From f955f64631104fcc1de9762c692ef3d65c26c006 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 17 Nov 2021 20:25:46 +0100 Subject: [PATCH 60/64] Update .gitignore fix --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fbca2df1..bff3430a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ *.pdf *.log report/ -.DS_Store +.DS_Store \ No newline at end of file From f9e97ec3acb3c5bec738dde2d819d53e5deeb2b6 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Thu, 2 Dec 2021 12:06:28 +0100 Subject: [PATCH 61/64] Fix labels --- codeHF/workflows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index ffdaa0eb..1c14033a 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -206,7 +206,7 @@ workflows: o2-analysis-hf-task-lb: <<: *task - dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-alice3-trackextension, o2-analysis-alice3-centrality] + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3, o2-analysis-alice3-centrality] o2-analysis-hf-task-xic: <<: *task @@ -271,7 +271,7 @@ workflows: o2-analysis-hf-tree-creator-lb-tolcpi: requires_mc: yes - dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-alice3-trackextension] + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3] tables: [HFCANDLbFull, HFCANDLbFullE, HFCANDLbFullP] o2-analysis-hf-tree-creator-x-tojpsipipi: From 575ae70304fd23d6b7a8531ad9703fe97cd8efa3 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Wed, 2 Feb 2022 15:16:28 +0100 Subject: [PATCH 62/64] local gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 38f0321d..fe44d724 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,7 @@ report/ /.vs/Run3Analysisvalidation/v16/Browse.VC.db /.vs/Run3Analysisvalidation/v16/.suo /.vs/ProjectSettings.json +/.vs/Run3Analysisvalidation/FileContentIndex +/.vs/Run3Analysisvalidation/v17 +/.vs/Run3Analysisvalidation/project-colors.json +/.vs/PythonSettings.json From 86f25d7cfebf50e0080f1c838e1aab72591a60ce Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 6 Apr 2022 10:40:59 +0200 Subject: [PATCH 63/64] Update workflows --- codeHF/workflows.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index aedc166b..2aedb1dc 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -81,6 +81,14 @@ workflows: default: [HFCANDBPLUSBASE, HFCANDBPLUSEXT] mc: [HFCANDBPMCREC, HFCANDBPMCGEN] + o2-analysis-hf-candidate-creator-lb: + <<: *cand_creator + dependencies: + - o2-analysis-hf-lc-candidate-selector + tables: + default: [HFCANDLBBASE, HFCANLBXEXT] + mc: [HFCANDLBMCREC, HFCANDLBMCGEN] + # Selectors o2-analysis-hf-d0-candidate-selector: &selector_2prong @@ -110,6 +118,11 @@ workflows: <<: *selector_3prong tables: HFSELLCCAND + o2-analysis-hf-lb-tolcpi-candidate-selector: + <<: *selector_3prong + dependencies: o2-analysis-hf-candidate-creator-lb + tables: HFSELLBCAND + o2-analysis-hf-xic-topkpi-candidate-selector: <<: *selector_3prong tables: HFSELXICCAND @@ -174,6 +187,12 @@ workflows: mc: "--doMC" dependencies: o2-analysis-hf-lc-tok0sp-candidate-selector + o2-analysis-hf-task-lb: + options: + mc: "--doMC" + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3, o2-analysis-alice3-centrality] + + o2-analysis-hf-task-xicc: options: mc: "--doMC" @@ -209,6 +228,11 @@ workflows: dependencies: o2-analysis-hf-lc-candidate-selector tables: [HFCANDP3Full, HFCANDP3FullE, HFCANDP3FullP] + o2-analysis-hf-tree-creator-lb-tolcpi: + requires_mc: yes + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3, o2-analysis-trackselection] + tables: HFCANDLbFull + o2-analysis-hf-tree-creator-x-tojpsipipi: requires_mc: yes dependencies: o2-analysis-hf-x-tojpsipipi-candidate-selector From 241dccfbb0ccd6a9d4bc4c7d1f18dac77770de28 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Wed, 6 Apr 2022 11:27:10 +0200 Subject: [PATCH 64/64] Update configtasks to include cuts and mc conversion --- codeHF/config_tasks.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 7a0bad3d..f0d58144 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -28,6 +28,8 @@ DATABASE_O2="workflows.yml" MAKE_GRAPH=0 # Make topology graph. # Activation of O2 workflows +# MC conversion +DOO2_MCCONV=1 # mc-converter # Trigger selection DOO2_TRIGSEL=0 # event-selection # QA @@ -92,6 +94,7 @@ DOO2_DPLUSDMINUS_MCGEN=0 # hf-correlator-dplusdminus-mc-gen APPLYCUTS_D0=0 # Apply D0 selection cuts. APPLYCUTS_DPLUS=0 # Apply D+ selection cuts. APPLYCUTS_LC=0 # Apply Λc selection cuts. +APPLYCUTS_LB=0 # Apply Λb selection cuts. APPLYCUTS_XIC=0 # Apply Ξc selection cuts. APPLYCUTS_JPSI=0 # Apply J/ψ selection cuts. APPLYCUTS_X=0 # Apply X selection cuts. @@ -186,6 +189,12 @@ function AdjustJson { ReplaceString "\"d_selectionFlagDPlus\": \"0\"" "\"d_selectionFlagDPlus\": \"7\"" "$JSON" || ErrExit "Failed to edit $JSON." fi + # Enable Λb selection. + if [ $APPLYCUTS_LB -eq 1 ]; then + MsgWarn "\nUsing Λb selection cuts" + ReplaceString "\"d_selectionFlagLb\": \"0\"" "\"d_selectionFlagLb\": \"1\"" "$JSON" || ErrExit "Failed to edit $JSON." + fi + # Enable Λc selection. if [ $APPLYCUTS_LC -eq 1 ]; then MsgWarn "\nUsing Λc selection cuts" @@ -239,6 +248,8 @@ function MakeScriptO2 { [ "$ISALICE3" -eq 1 ] && SUFFIX_ALICE3="-alice3" || SUFFIX_ALICE3="" WORKFLOWS="" + # MC converter to version 001 of mcparticles + [ $DOO2_MCCONV -eq 1 ] && WORKFLOWS+=" o2-analysis-mc-converter" # Trigger selection [ $DOO2_TRIGSEL -eq 1 ] && WORKFLOWS+=" o2-analysis-event-selection" # QA