float ReconstructionMCMatching::DrTopLep(Interpretation& i){
    float dr=999;
    if(top_lep.Pt()>0.01 && i.TopLep().Pt()>0.01){
	dr=top_lep.DeltaR(i.TopLep());
    }
    return dr;
}
float ReconstructionQuality::TTHBB_ME(Interpretation& i){
  if(i.HasTag("TTHBB_ME")) return i.GetTag("TTHBB_ME");
  float tag=me.GetTTHBBMEsq(i.TopHad(),i.TopLep(),i.B1(),i.B2());
  i.SetTag("TTHBB_ME",tag);
  return tag;
}