]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Warnings corrected.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 28 Feb 2010 14:32:21 +0000 (14:32 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 28 Feb 2010 14:32:21 +0000 (14:32 +0000)
PWG1/TRD/AliTRDrecoTask.cxx
PWG1/TRD/AliTRDresolution.cxx

index f3c45ee85fa782e4ff2ad5b491bd0b291797a386..d212ce92bb520e5923c2102f018a208d0ca0a7a2 100644 (file)
@@ -46,6 +46,7 @@ AliTRDrecoTask::AliTRDrecoTask()
   ,fkTrack(0x0)
   ,fkMC(0x0)
   ,fkESD(0x0)
+  ,fDebugLevel(0)  
   ,fPlotFuncList(0x0)
 {
 }
@@ -58,6 +59,7 @@ AliTRDrecoTask::AliTRDrecoTask(const char *name, const char */*title*/)
   ,fkTrack(0x0)
   ,fkMC(0x0)
   ,fkESD(0x0)
+  ,fDebugLevel(0)  
   ,fPlotFuncList(0x0)
 {
   DefineInput (1, TObjArray::Class());
index 8ba7bc4df227c1a5e924c97c6c2d1ac922cf40e6..9d912522714cc13cc7c87b6772b606cd6652fe4b 100644 (file)
@@ -416,8 +416,8 @@ TH1* AliTRDresolution::PlotCluster(const AliTRDtrackV1 *track)
         AliTRDclusterInfo *clInfo = new AliTRDclusterInfo;
         fCl->Add(clInfo);
         clInfo->SetCluster(c);
-        Float_t covR[] = {cov[0], cov[1], cov[2]};
-        clInfo->SetGlobalPosition(yt, zt, dydx, dzdx, covR);
+        Float_t covRL[] = {cov[0], cov[1], cov[2]};
+        clInfo->SetGlobalPosition(yt, zt, dydx, dzdx, covRL);
         clInfo->SetResolution(dy);
         clInfo->SetAnisochronity(d);
         clInfo->SetDriftLength(dx);