# | Line 145 | Line 145 | void HwwExampleAnalysisMod::Process() | |
---|---|---|
145 | // At least two leptons in the event | |
146 | if (CleanLeptons->GetEntries() < 2) return; | |
147 | // Pt1 > 20 && Pt2 > 10 | |
148 | < | if(CleanLeptons->At(0)->Pt() <= 20 || CleanLeptons->At(1)->Pt() <= 20) return; |
148 | > | if(CleanLeptons->At(0)->Pt() <= 20 || CleanLeptons->At(1)->Pt() <= 10) return; |
149 | // opposite charge leptons | |
150 | if(CleanLeptons->At(0)->Charge() * CleanLeptons->At(1)->Charge() > 0) return; | |
151 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |