Skip to content

Commit 33e256c

Browse files
committed
more informative report from sv-reader
1 parent 3783e50 commit 33e256c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Detectors/GlobalTrackingWorkflow/readers/src/SecondaryVertexReaderSpec.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ void SecondaryVertexReader::run(ProcessingContext& pc)
9191
auto ent = mTree->GetReadEntry() + 1;
9292
assert(ent < mTree->GetEntries()); // this should not happen
9393
mTree->GetEntry(ent);
94-
LOG(info) << "Pushing " << mV0s.size() << " V0s and " << mCascs.size() << " cascades at entry " << ent;
94+
LOGP(info, "Pushing {} V0s ({} indices), {} cascades ({} indices) and {} 3-body ({} indices ) at entry {}",
95+
mV0s.size(), mV0sIdx.size(), mCascs.size(), mCascsIdx.size(), m3Bodys.size(), m3BodysIdx.size(), ent);
9596

9697
pc.outputs().snapshot(Output{"GLO", "V0S_IDX", 0}, mV0sIdx);
9798
pc.outputs().snapshot(Output{"GLO", "V0S", 0}, mV0s);

0 commit comments

Comments
 (0)