159 |
|
double lMVA = MVAValue (iJet,iVertex,iVertices,iJetCorrector,iPileupEnergyDensity); |
160 |
|
double lPt = correctedPt(iJet, iJetCorrector,iPileupEnergyDensity); |
161 |
|
if(lPt < fJetPtMin) return false; |
162 |
– |
if(lPt > 50) return true; //==> we can raise this |
162 |
|
|
163 |
|
int lPtId = 0; |
164 |
|
if(lPt > 10 && lPt < 20) lPtId = 1; |
183 |
|
Bool_t JetIDMVA::pass(const PFJet *iJet,const Vertex *iVertex,const VertexCol *iVertices) { |
184 |
|
if(!JetTools::passPFLooseId(iJet)) return false; |
185 |
|
if(iJet->Pt() < fJetPtMin) return false; |
187 |
– |
if(iJet->Pt() > 50) return true; //==> we can raise this |
186 |
|
if(fabs(iJet->Eta()) > 4.99) return false; |
187 |
|
double lMVA = MVAValue(iJet,iVertex,iVertices); |
188 |
|
|