vhbb / cmssw

CMS Offline Software
cms-sw.github.io/cmssw
4 stars 5 forks source link

Do we need ele_mvaEleID_Trig_preselection(x) for Zee? #652

Open degrutto opened 7 years ago

degrutto commented 7 years ago

If we move to DoubleElectron I guess we do not need

zEleSelection = lambda x : x.pt() > 15 and getattr(x,"mvaIdSpring16GeneralPurposePOG80",False) and ele_mvaEleID_Trig_preselection(x),

but just

zEleSelection = lambda x : x.pt() > 15 and getattr(x,"mvaIdSpring16GeneralPurposePOG80",False)     

right?

veelken commented 7 years ago

Hi Michele,

I agree. I am using the "selLeptons" collection only. Does the zEleSelection have an effect on "selLeptons" also or is it stored in a different branch ?

Cheers,

Christian

degrutto commented 7 years ago

Hi @veelken

zEleSelection is used to define "vLeptons" in Vtype 1 case (Zee), no impact on selLeptons

degrutto commented 7 years ago

see #663