74 |
|
if(ctrl.debug) cout << "iS fo? ... " << ret << endl; |
75 |
|
ret &= ( fabs(mu->Ip3dPVSignificance()) < 4 ); |
76 |
|
if(ctrl.debug) cout << "and pass IP (" << mu->Ip3dPVSignificance() << ") ? ... " << ret << endl; |
77 |
< |
ret &= ( mu->Pt() > 5 ); |
77 |
> |
ret &= ( mu->Pt() >= 5 ); |
78 |
|
if(ctrl.debug) cout << "and >5 GeV (" << mu->Pt() << ") ? ... " << ret << endl; |
79 |
|
ret &= ( fabs(mu->Eta()) <= 2.4 ); |
80 |
|
if(ctrl.debug) cout << "and < 2.4 eta (" << mu->Eta() << ")? ... " << ret << endl; |
106 |
|
if(ctrl.debug) cout << "inside muonpresel ... " << endl; |
107 |
|
ret &= ( mu->Ip3dPVSignificance() < 100 ); |
108 |
|
if(ctrl.debug) cout << "and pass IP (" << mu->Ip3dPVSignificance() << ") ? ... " << ret << endl; |
109 |
< |
ret &= ( mu->Pt() > 5 ); |
109 |
> |
ret &= ( mu->Pt() >= 5 ); |
110 |
|
if(ctrl.debug) cout << "and >5 GeV (" << mu->Pt() << ") ? ... " << ret << endl; |
111 |
|
ret &= ( fabs(mu->Eta()) <= 2.4 ); |
112 |
|
if(ctrl.debug) cout << "and < 2.4 eta (" << mu->Eta() << ")? ... " << ret << endl; |