Skip to content

Commit 5bf6994

Browse files
committed
Merge branch 'feature/SystematicsRadMuMu-rel0803' into 'release/08-03'
Include SystematicsRadMuMu skim in SystematicsCombinedLowMulti for official... See merge request belle2/software/basf2!4168
2 parents 963409b + 1b5b97b commit 5bf6994

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

calibration/tests/test_caf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
import validation_gt as vgt
1414

1515

16+
if b2test_utils.is_ci():
17+
b2test_utils.skip_test("Will not run the test because $BELLE2_IS_CI is not set.")
18+
1619
calibration_path = b2test_utils.require_file('calibration', 'validation')
1720

1821
with b2test_utils.clean_working_directory():

skim/scripts/skim/WGs/systematics.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,13 +879,14 @@ class SystematicsCombinedLowMulti(CombinedSkim):
879879
SystematicsFourLeptonFromHLTFlag,
880880
SystematicsRadmumuFromHLTFlag,
881881
SystematicsBhabha,
882+
SystematicsRadMuMu,
882883
TauThrust.
883884
884885
This is required for technical (data production) reasons, as it keeps the number of files low.
885886
See the definitions of the individual skims for the details.
886887
"""
887888
__authors__ = ["Marcel Hohmann"]
888-
__description__ = "Combined Skim of the systematic low multi skims: FourLepton, Radmumu, Bhabha, TauThrust."
889+
__description__ = "Combined Skim of the systematic low multi skims: FourLepton, Radmumu, Bhabha, RadMuMu, TauThrust."
889890
__contact__ = __liaison_leptonID__
890891
__category__ = "performance, leptonID"
891892
__name__ = "SystematicsCombinedLowMulti"
@@ -903,5 +904,10 @@ def __init__(self, mdstOutput=True, **kwargs):
903904
kwargs.setdefault('udstOutput', False)
904905

905906
from skim.WGs.taupair import TauThrust
906-
skims_list = [SystematicsFourLeptonFromHLTFlag(), SystematicsRadMuMuFromHLTFlag(), SystematicsBhabha(), TauThrust()]
907+
skims_list = [
908+
SystematicsFourLeptonFromHLTFlag(),
909+
SystematicsRadMuMuFromHLTFlag(),
910+
SystematicsBhabha(),
911+
SystematicsRadMuMu(),
912+
TauThrust()]
907913
super().__init__(*skims_list, **kwargs)

0 commit comments

Comments
 (0)