]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
fix for monitoring number of pads/cluster
authorabercuci <abercuci@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 11 Oct 2010 12:39:49 +0000 (12:39 +0000)
committerabercuci <abercuci@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 11 Oct 2010 12:39:49 +0000 (12:39 +0000)
PWG1/TRD/AliTRDclusterResolution.cxx

index 47a9957a78b35f625c0d6f4ec55f0680403185d1..317f0b9713cfea7b613561933301792d9cf15450 100644 (file)
@@ -483,7 +483,7 @@ TObjArray* AliTRDclusterResolution::Histos()
   arr->AddAt(h3, 2);
 
   //  RESOLUTION/PULLS PLOTS
-  fContainer->AddAt(arr = new TObjArray(3), kYRes);
+  fContainer->AddAt(arr = new TObjArray(5), kYRes);
   arr->SetName("ResY");
   // resolution plot on pw and q (for dydx=0 && B=0)
   if(!(h3=(TH3S*)gROOT->FindObject(Form("Res%s%03d", (HasMCdata()?"MC":"") ,fDet)))) {
@@ -598,7 +598,7 @@ void AliTRDclusterResolution::UserExec(Option_t *)
       if(TMath::Abs(fRow-r) > 2) continue;
     }
     dy = cli->GetResolution();
-    AliDebug(4, Form("det[%d] tb[%2d] q[%4.0f Log[%6.4f]] dy[%7.2f][um] ypull[%5.2f]", det, t, q, TMath::Log(q), 1.e4*dy, dy/TMath::Sqrt(covcl[0])));
+    AliDebug(4, Form("det[%d] tb[%2d] q[%4.0f Log[%6.4f]] np[%d] dy[%7.2f][um] ypull[%5.2f]", det, t, q, TMath::Log(q), np, 1.e4*dy, dy/TMath::Sqrt(covcl[0])));
     
     cli->GetGlobalPosition(y, z, dydx, dzdx, &cov[0]);
     Float_t pw(cli->GetYDisplacement());