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
654
+
std::string vlistStr{};
653
655
for (int iv = vlist.getMin(); iv <= vlist.getMax(); iv++) {
654
656
int vtMCID = mRecoCont->getPrimaryVertexMCLabel(iv).getEventID();
655
657
watchHitVtxOK = vtMCID == watchLb0.getEventID();
658
+
vlistStr += fmt::format(" {}", iv);
656
659
if (watchHitVtxOK) {
657
-
break;
660
+
vlistStr += "+";
661
+
// break;
658
662
}
659
663
}
660
664
if (watchHitVtxOK) {
661
-
watchPairRep = fmt::format("watched labels {} of {} and {} of {}, MCVtx={}", watchLb0.asString(), seedP.gid.asString(), watchLb1.asString(), seedN.gid.asString(), watchHitVtxOK);
665
+
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