]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Copy/paste error fixed (Panos)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 19 Apr 2006 15:50:47 +0000 (15:50 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 19 Apr 2006 15:50:47 +0000 (15:50 +0000)
ANALYSIS/AliBalance.cxx

index c2f3360c7f6a97aa726dcf25b5a4a8e5cb806e67..99f3f9853b0519df6db610a619104a02c87059a5 100644 (file)
@@ -190,8 +190,8 @@ void AliBalance::CalculateBalance()
        {
          for(j = 0; j < i; j++)
            {
-             Double_t rap1 = 0.5*log((fV[i].E() - fV[i].Pz())/(fV[i].E() + fV[i].Pz())); 
-             Double_t rap2 = 0.5*log((fV[j].E() - fV[j].Pz())/(fV[j].E() + fV[j].Pz())); 
+             Double_t rap1 = 0.5*log((fV[i].E() + fV[i].Pz())/(fV[i].E() - fV[i].Pz())); 
+             Double_t rap2 = 0.5*log((fV[j].E() + fV[j].Pz())/(fV[j].E() - fV[j].Pz())); 
              Double_t dy = TMath::Abs(rap1 - rap2);
              ibin = Int_t(dy/fP2Step);
              if((fCharge[i] > 0)&&(fCharge[j] > 0))
@@ -213,8 +213,8 @@ void AliBalance::CalculateBalance()
            {
              Double_t p1 = sqrt(pow(fV[i].Px(),2) + pow(fV[i].Py(),2) + pow(fV[i].Pz(),2)); 
              Double_t p2 = sqrt(pow(fV[j].Px(),2) + pow(fV[j].Py(),2) + pow(fV[j].Pz(),2));
-             Double_t eta1 = 0.5*log((p1 - fV[i].Pz())/(p1 + fV[i].Pz())); 
-             Double_t eta2 = 0.5*log((p2 - fV[j].Pz())/(p2 + fV[j].Pz())); 
+             Double_t eta1 = 0.5*log((p1 + fV[i].Pz())/(p1 - fV[i].Pz())); 
+             Double_t eta2 = 0.5*log((p2 + fV[j].Pz())/(p2 - fV[j].Pz())); 
              Double_t deta = TMath::Abs(eta1 - eta2);
              ibin = Int_t(deta/fP2Step);
              if((fCharge[i] > 0)&&(fCharge[j] > 0))