From 4908eb3969af939ef1a9780f04a715bd752ea82e Mon Sep 17 00:00:00 2001 From: morsch Date: Wed, 20 Mar 2013 09:32:35 +0000 Subject: [PATCH] Fix for track vertices without constraint --- STEER/AOD/AliAODVertex.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STEER/AOD/AliAODVertex.cxx b/STEER/AOD/AliAODVertex.cxx index 29a8f37986b..e55f10d4a6b 100644 --- a/STEER/AOD/AliAODVertex.cxx +++ b/STEER/AOD/AliAODVertex.cxx @@ -297,7 +297,7 @@ Int_t AliAODVertex::GetNContributors() const Int_t cont = 0; TString vtitle = GetTitle(); - if (!vtitle.Contains("VertexerTracks")) { + if (!vtitle.Contains("VertexerTracks") || vtitle.Contains("TracksNoConstraint")) { cont = fNContributors; } else { for (Int_t iDaug = 0; iDaug < GetNDaughters(); iDaug++) { -- 2.43.0