diff --git a/XAMPPmonoH/Root/MonoHAnalysisConfig.cxx b/XAMPPmonoH/Root/MonoHAnalysisConfig.cxx index 92b84233773fa49740ddd8ecd218de7e2864f5ed..b94b23e0362ac00c8792dc23154f0217c05e6fa8 100644 --- a/XAMPPmonoH/Root/MonoHAnalysisConfig.cxx +++ b/XAMPPmonoH/Root/MonoHAnalysisConfig.cxx @@ -789,13 +789,7 @@ namespace XAMPP { // -------------------------------------------------------------------- // If we use PFlow, we clean PFlow :) if (m_doPFlowElecCleaning) CREMuResolvedCutFlow.push_back(PFlowElecCleaning); - if (m_doMETTrigger) - CREMuResolvedCutFlow.push_back(IsMETTrigPassed); - else - // Use the same triggers as for the dilepton regions, but ORed - CREMuResolvedCutFlow.push_back( - (IsSingleElecTrigPassed->combine(IsSingleElecTrigMatched, Cut::Combine::AND)) - ->combine(IsSingleMuonTrigPassed->combine(IsSingleMuonTrigMatched, Cut::Combine::AND), Cut::Combine::OR)); + CREMuResolvedCutFlow.push_back(IsMETTrigPassed); // Use the same muon selection as the 1L CR CREMuResolvedCutFlow.push_back(OneMuon); @@ -821,7 +815,7 @@ namespace XAMPP { // We can't necessarily say which MET value we're cutting on here, but // we're definitely cutting on one of them... :) - CREMuResolvedCutFlow.push_back(MetTST150lepInvis->combine(MetTST150, Cut::Combine::OR)); + CREMuResolvedCutFlow.push_back(MetTST150lepInvis); CREMuResolvedCutFlow.push_back(TwoJets); // This variable now cuts on >= 2 b-jets CREMuResolvedCutFlow.push_back(MoreThanOneBJet); @@ -870,13 +864,7 @@ namespace XAMPP { // If we use PFlow, we clean PFlow :) if (m_doPFlowElecCleaning) CREMuMergedCutFlow.push_back(PFlowElecCleaning); - if (m_doMETTrigger) - CREMuMergedCutFlow.push_back(IsMETTrigPassed); - else - // Use the same triggers as for the dilepton regions, but ORed - CREMuMergedCutFlow.push_back( - (IsSingleElecTrigPassed->combine(IsSingleElecTrigMatched, Cut::Combine::AND)) - ->combine(IsSingleMuonTrigPassed->combine(IsSingleMuonTrigMatched, Cut::Combine::AND), Cut::Combine::OR)); + CREMuMergedCutFlow.push_back(IsMETTrigPassed); // Use the same lepton selections as resolved CREMuMergedCutFlow.push_back(OneMuon); @@ -891,7 +879,7 @@ namespace XAMPP { // extended tau veto merged CREMuMergedCutFlow.push_back(Extended_TauVeto_Merged); // Same as above - CREMuMergedCutFlow.push_back(MetTSTGreater500lepInvis->combine(MetTSTGreater500, Cut::Combine::OR)); + CREMuMergedCutFlow.push_back(MetTSTGreater500lepInvis); CREMuMergedCutFlow.push_back(OneFatJet); CREMuMergedCutFlow.push_back(largeR_btagging); CREMuMergedCutFlow.push_back(HiggsMassMerged->combine(HiggsMassMergedCorr, Cut::Combine::OR));