@@ -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