Skip to content

Commit 1ede8a2

Browse files
authored
Merge pull request #56 from HEPchihwan/DEV
Muon.cc highptId & tkisoid slight fix
2 parents 51fe1b1 + 5431149 commit 1ede8a2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

DataFormats/src/Muon.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ bool Muon::PassID(const MuonID ID) const {
128128
case MuonID::POG_TRIGGER_LOOSE:
129129
return isPOGTriggerIdLoose();
130130
case MuonID::POG_TRACKER_HIGH_PT:
131-
return (int)HighPtId() == 2;
131+
return (int)HighPtId() == 1;
132132
case MuonID::POG_GLOBAL_HIGH_PT:
133-
return (int)HighPtId() == 3;
133+
return (int)HighPtId() == 2;
134134
case MuonID::POG_MINISO_LOOSE:
135135
return (int)MiniIsoId() >= (int)(WorkingPoint::LOOSE);
136136
case MuonID::POG_MINISO_MEDIUM:
@@ -166,9 +166,9 @@ bool Muon::PassID(const MuonID ID) const {
166166
case MuonID::POG_PUPPIISO_TIGHT:
167167
return (int)PuppiIsoId() >= (int)(WorkingPoint::TIGHT);
168168
case MuonID::POG_TKISO_LOOSE:
169-
return (int)TkIsoId() == 2;
169+
return (int)TkIsoId() == 1;
170170
case MuonID::POG_TKISO_TIGHT:
171-
return (int)TkIsoId() == 3;
171+
return (int)TkIsoId() == 2;
172172
default:
173173
break;
174174
}

0 commit comments

Comments
 (0)