From 8428f55daf6a9ae3f4a6cc9ca57576a05ba929e2 Mon Sep 17 00:00:00 2001 From: abercuci Date: Mon, 8 Mar 2010 14:19:11 +0000 Subject: [PATCH] fix compilation warning --- PWG1/TRD/AliTRDcheckDET.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWG1/TRD/AliTRDcheckDET.cxx b/PWG1/TRD/AliTRDcheckDET.cxx index e656da8e1ae..2460c66697d 100644 --- a/PWG1/TRD/AliTRDcheckDET.cxx +++ b/PWG1/TRD/AliTRDcheckDET.cxx @@ -1088,7 +1088,7 @@ TH1 *AliTRDcheckDET::PlotChargeTracklet(const AliTRDtrackV1 *track){ AliTRDcluster *c = NULL; Double_t qTot = 0; Int_t nTracklets =fkTrack->GetNumberOfTracklets(); - for(Int_t itl = NULL; itl < AliTRDgeometry::kNlayer; itl++){ + for(Int_t itl(0); itl < AliTRDgeometry::kNlayer; itl++){ if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK()) continue; qTot = 0.; for(Int_t ic = AliTRDseedV1::kNclusters; ic--;){ -- 2.43.0