From 80a230c578a391eb3e2733128f5d6058d9c7214f Mon Sep 17 00:00:00 2001 From: mjongerh Date: Thu, 14 Jul 2022 16:31:40 +0200 Subject: [PATCH 1/5] Final version Lb tasks --- codeHF/config_tasks.sh | 19 ++++++++++ codeHF/dpl-config_run5_hf.json | 66 ++++++++++++++++++++++++++++++++++ codeHF/workflows.yml | 30 ++++++++++++++-- 3 files changed, 113 insertions(+), 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 068cc77c..827656e0 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -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 @@ -53,6 +54,7 @@ DOO2_CAND_DSTAR=0 # hf-candidate-creator-dstar 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 @@ -64,6 +66,7 @@ DOO2_SEL_BPLUS=0 # hf-bplus-tod0pi-candidate-selector 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 DOO2_TASK_XIC=0 # hf-task-xic DOO2_TASK_JPSI=0 # hf-task-jpsi DOO2_TASK_X=0 # hf-task-x @@ -74,6 +77,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=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_CHIC=0 # hf-tree-creator-chic-tojpsigamma @@ -93,6 +97,7 @@ DOO2_TRKPROP=0 # track-propagation 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. @@ -213,6 +218,12 @@ function AdjustJson { ReplaceString "\"d_selectionFlagLc\": \"0\"" "\"d_selectionFlagLc\": \"1\"" "$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_XIC -eq 1 ]; then MsgWarn "Using Ξc selection cuts" @@ -260,6 +271,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 @@ -278,6 +291,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" @@ -289,6 +303,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" @@ -300,6 +315,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" @@ -318,6 +334,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" [ $DOO2_TREE_CHIC -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-tree-creator-chic-tojpsigamma" @@ -392,6 +409,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)\"" @@ -402,6 +420,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 edae0afd..37b99f66 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -545,6 +545,50 @@ ] } }, + "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" + ] + }, + "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", @@ -643,6 +687,28 @@ }, "processMC": "true" }, + "hf-task-lb": { + "cutYCandMax": "2.0", + "d_selectionFlagLb": "0", + "pTBins": { + "values": [ + "0", + "0.5", + "1", + "2", + "3", + "4", + "5", + "7", + "10", + "13", + "16", + "20", + "24" + ] + }, + "processMC": "true" + }, "hf-task-xic": { "cutEtaCandMax": "-1", "d_selectionFlagXic": "0", diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index 51c39ae3..a4617826 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -76,13 +76,24 @@ workflows: default: [HFCANDCHICBASE, HFCANDCHICEXT] mc: [HFCANDCHICMCREC, HFCANDCHICMCGEN] - o2-analysis-hf-candidate-creator-bplus: + o2-analysis-hf-candidate-creator-bplus: <<: *cand_creator dependencies: o2-analysis-hf-d0-candidate-selector tables: default: [HFCANDBPLUSBASE, HFCANDBPLUSEXT] mc: [HFCANDBPMCREC, HFCANDBPMCGEN] + o2-analysis-hf-candidate-creator-lb: + <<: *cand_creator + options: + mc: "--doMC" + dependencies: + - o2-analysis-hf-lc-candidate-selector + - o2-analysis-alice3-centrality + tables: + default: [HFCANDLB, HFCANDLBEXT] + mc: [HFCANDLBMCREC, HFCANDLBMCGEN] + # Selectors o2-analysis-hf-d0-candidate-selector: &selector_2prong @@ -108,6 +119,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 @@ -138,7 +154,7 @@ workflows: o2-analysis-hf-bplus-tod0pi-candidate-selector: dependencies: o2-analysis-hf-candidate-creator-bplus tables: HFSELBPLUSCAND - + # Analysis tasks o2-analysis-hf-task-d0: @@ -156,6 +172,11 @@ workflows: o2-analysis-hf-task-lc: dependencies: o2-analysis-hf-lc-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-xic: options: mc: "--doMC" @@ -211,6 +232,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] + tables: [HFCANDLbFull, HFCANDLbFullE, HFCANDLbFullP] + o2-analysis-hf-tree-creator-x-tojpsipipi: requires_mc: yes dependencies: o2-analysis-hf-x-tojpsipipi-candidate-selector From cc5c9f2943edc68e8fe4c09105a87011a31980fa Mon Sep 17 00:00:00 2001 From: mjongerh Date: Thu, 14 Jul 2022 16:37:13 +0200 Subject: [PATCH 2/5] fix white spaces --- codeHF/workflows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index a4617826..58e13612 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -76,7 +76,7 @@ workflows: default: [HFCANDCHICBASE, HFCANDCHICEXT] mc: [HFCANDCHICMCREC, HFCANDCHICMCGEN] - o2-analysis-hf-candidate-creator-bplus: + o2-analysis-hf-candidate-creator-bplus: <<: *cand_creator dependencies: o2-analysis-hf-d0-candidate-selector tables: @@ -154,7 +154,7 @@ workflows: o2-analysis-hf-bplus-tod0pi-candidate-selector: dependencies: o2-analysis-hf-candidate-creator-bplus tables: HFSELBPLUSCAND - + # Analysis tasks o2-analysis-hf-task-d0: From ef32f4a81e54f3aa3cc19a26f269fa51cdca9a31 Mon Sep 17 00:00:00 2001 From: mjongerh Date: Thu, 14 Jul 2022 16:53:37 +0200 Subject: [PATCH 3/5] Update config_tasks.sh remove duplicate --- codeHF/config_tasks.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 827656e0..3a11e3fc 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -271,8 +271,6 @@ 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 From a68eeede0588d96ba9dbfc8dce755b4be1f705ca Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Tue, 25 Oct 2022 15:04:07 +0200 Subject: [PATCH 4/5] Fix labels and ordering, ommit dependencies --- codeHF/config_tasks.sh | 5 ++--- codeHF/workflows.yml | 5 +---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 01d323a0..19570539 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -45,8 +45,8 @@ DOO2_SKIM=0 # hf-track-index-skims-creator 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_X=0 # hf-candidate-creator-x DOO2_CAND_CHIC=0 # hf-candidate-creator-chic DOO2_CAND_XICC=0 # hf-candidate-creator-xicc DOO2_CAND_BPLUS=0 # hf-candidate-creator-bplus @@ -327,8 +327,8 @@ function MakeScriptO2 { [ $DOO2_SKIM -eq 1 ] && WORKFLOWS+=" ${WF_SKIM}${SUFFIX_CASC}" [ $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_X -eq 1 ] && WORKFLOWS+=" o2-analysis-hf-candidate-creator-x" [ $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" @@ -451,7 +451,6 @@ function MakeScriptPostprocess { [ $DOO2_TASK_DS -eq 1 ] && OPT_COMPARE+=" ds " [ $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)\"" diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index 62344dd0..4787f34d 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -83,8 +83,6 @@ workflows: o2-analysis-hf-candidate-creator-lb: <<: *cand_creator - options: - mc: "--doMC" dependencies: - o2-analysis-hf-lc-candidate-selector - o2-analysis-alice3-centrality @@ -123,7 +121,6 @@ workflows: tables: HFSELDSCAND o2-analysis-hf-lb-tolcpi-candidate-selector: - <<: *selector_3prong dependencies: o2-analysis-hf-candidate-creator-lb tables: HFSELLBCAND @@ -181,7 +178,7 @@ workflows: o2-analysis-hf-task-lb: options: mc: "--doMC" - dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3] #, o2-analysis-alice3-centrality] + dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3] o2-analysis-hf-task-xic: dependencies: o2-analysis-hf-xic-topkpi-candidate-selector From d298c27e787c0954a38cda69a6da1cf56408a1e2 Mon Sep 17 00:00:00 2001 From: Maurice Jongerhuis Date: Tue, 25 Oct 2022 15:15:44 +0200 Subject: [PATCH 5/5] Fix selectionflag label --- codeHF/config_tasks.sh | 2 +- codeHF/dpl-config_run5_hf.json | 2 +- codeHF/workflows.yml | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/codeHF/config_tasks.sh b/codeHF/config_tasks.sh index 19570539..926bb9d2 100644 --- a/codeHF/config_tasks.sh +++ b/codeHF/config_tasks.sh @@ -252,7 +252,7 @@ function AdjustJson { # 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." + ReplaceString "\"selectionFlagLb\": \"0\"" "\"selectionFlagLb\": \"1\"" "$JSON" || ErrExit "Failed to edit $JSON." fi # Enable Ξc selection. diff --git a/codeHF/dpl-config_run5_hf.json b/codeHF/dpl-config_run5_hf.json index 6c1d5259..466c9230 100644 --- a/codeHF/dpl-config_run5_hf.json +++ b/codeHF/dpl-config_run5_hf.json @@ -816,7 +816,7 @@ }, "hf-task-lb": { "cutYCandMax": "2.0", - "d_selectionFlagLb": "0", + "selectionFlagLb": "0", "pTBins": { "values": [ "0", diff --git a/codeHF/workflows.yml b/codeHF/workflows.yml index 4787f34d..b90599c9 100644 --- a/codeHF/workflows.yml +++ b/codeHF/workflows.yml @@ -176,8 +176,6 @@ workflows: dependencies: o2-analysis-hf-lc-candidate-selector o2-analysis-hf-task-lb: - options: - mc: "--doMC" dependencies: [o2-analysis-hf-lb-tolcpi-candidate-selector, o2-analysis-trackextension-alice3] o2-analysis-hf-task-xic: