You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto vlist = seedP.vBracket.getOverlap(seedN.vBracket); // indices of vertices shared by both seeds
652
+
std::string vlistStr{};
651
653
for (int iv = vlist.getMin(); iv <= vlist.getMax(); iv++) {
652
654
int vtMCID = mRecoCont->getPrimaryVertexMCLabel(iv).getEventID();
653
655
watchHitVtxOK = vtMCID == watchLb0.getEventID();
656
+
vlistStr += fmt::format(" {}", iv);
654
657
if (watchHitVtxOK) {
655
-
break;
658
+
vlistStr += "+";
659
+
// break;
656
660
}
657
661
}
658
662
if (watchHitVtxOK) {
659
-
watchPairRep = fmt::format("watched labels {} of {} and {} of {}, MCVtx={}", watchLb0.asString(), seedP.gid.asString(), watchLb1.asString(), seedN.gid.asString(), watchHitVtxOK);
663
+
watchPairRep = fmt::format("watched labels {} of {} and {} of {}, MCVtx={} in {}", watchLb0.asString(), seedP.gid.asString(), watchLb1.asString(), seedN.gid.asString(), watchHitVtxOK, vlistStr);
0 commit comments