Event should only be selected when b-jet present, but the code has an ambiguous criteria.
for(Int_t i=0;i<nentries;i++)
{
oldTree->GetEntry(i);
bjet=0;
if(SSee_2016 || SSem_2016 || SSmm_2016 || eee_2016 || eem_2016 || emm_2016 || mmm_2016)
{
for(unsigned int ibjet=0;ibjet<jet_mv2c10->size();ibjet++)
{
/// if (jet_mv2c10->at(ibjet) > 0.1758475) { // 85% WP
if (jet_mv2c10->at(ibjet) > 0.645925)
{ // 77% WP
//if (jet_mv2c10->at(ibjet) > 0.8244273) { // 70% WP
bjet++;
}
}
bjetBranch->Fill();
}
}
Event should only be selected when b-jet present, but the code has an ambiguous criteria.