From e1e16891ae22327678dceea481ac70bad90f0b87 Mon Sep 17 00:00:00 2001 From: awhitbeck Date: Mon, 15 May 2017 09:37:43 -0500 Subject: [PATCH] increasing baseline cut on MHT to 300 GeV so that projections agree with Search Bin plots. --- src/definitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definitions.h b/src/definitions.h index 829e29f..46c47ba 100644 --- a/src/definitions.h +++ b/src/definitions.h @@ -749,7 +749,7 @@ template bool RA2bBaselineCut(ntupleType* ntuple){ return ( (NJets==2 && DeltaPhi1>0.5 && DeltaPhi2>0.5) || (NJets == 3 && DeltaPhi1 > 0.5 && DeltaPhi2 > 0.5 && DeltaPhi3 > 0.3) || (NJets > 3 && DeltaPhi1 > 0.5 && DeltaPhi2 > 0.5 && DeltaPhi3 > 0.3 && DeltaPhi4 > 0.3 ) ) - && MHT>250. && HT>300. + && MHT>300. && HT>300. && cutFlow_filters(ntuple) ;