]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
fixing warning reported by F.Antinori
authorbhippoly <bhippoly@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 15 Jul 2010 10:01:16 +0000 (10:01 +0000)
committerbhippoly <bhippoly@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 15 Jul 2010 10:01:16 +0000 (10:01 +0000)
PWG2/KINK/AliResonanceKink.cxx
PWG2/KINK/AliResonanceKinkLikeSign.cxx

index e71b3d1293150cbd633b464a904b40ab72432df0..5e95b2f7d7c3ce61f08896470af3a3a81c716537 100644 (file)
@@ -799,7 +799,7 @@ Bool_t AliResonanceKink::IsAcceptedForTrack(AliESDEvent *localesd,
   } 
 
   if(nClustersTPC < fMinTPCclusters) {
-      if (fDebug > 1) Printf("IsAccepted: Track rejected because it has a value of nclusters (TPC) of %ld (min. requested: %ld)", nClustersTPC, fMinTPCclusters);
+      if (fDebug > 1) Printf("IsAccepted: Track rejected because it has a value of nclusters (TPC) of %d (min. requested: %d)", nClustersTPC, fMinTPCclusters);
       return kFALSE;
   } 
   
index 7c5644f871810cbfb8c052a70ecb5157baac6db0..0f5cd4ac9f0a7c630931da56a9d26b6158191ef0 100644 (file)
@@ -321,7 +321,7 @@ Bool_t AliResonanceKinkLikeSign::IsAcceptedForTrack(AliESDEvent *localesd,
   } 
 
   if(nClustersTPC < fMinTPCclusters) {
-      if (fDebug > 1) Printf("IsAccepted: Track rejected because it has a value of nclusters (TPC) of %ld (min. requested: %ld)", nClustersTPC, fMinTPCclusters);
+      if (fDebug > 1) Printf("IsAccepted: Track rejected because it has a value of nclusters (TPC) of %d (min. requested: %d)", nClustersTPC, fMinTPCclusters);
       return kFALSE;
   }