]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVGEN/AliGenPHOSlib.cxx
New class used for primary vertex finding (AliITSVertexerTracks)
[u/mrichter/AliRoot.git] / EVGEN / AliGenPHOSlib.cxx
index 9cda7d26ad5cb2be6ad6b818c697d06c13b1cfb2..fad630e98e96000a5222567629b6e11e7c68df1f 100644 (file)
@@ -1,3 +1,4 @@
+
 /**************************************************************************
  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  *                                                                        *
 
 /*
 $Log$
+Revision 1.7.10.1  2002/06/10 14:57:41  hristov
+Merged with v3-08-02
+
+Revision 1.10  2002/05/02 09:40:50  morsch
+Recover mods from Rev. 1.8
+
+Revision 1.9  2002/04/23 12:54:29  morsch
+New options kPi0Flat y kEtaFlat (Gustavo Conesa)
+
+Revision 1.7  2001/03/09 13:01:41  morsch
+- enum constants for paramterisation type (particle family) moved to AliGen*lib.h
+- use AliGenGSIlib::kUpsilon, AliGenPHOSlib::kEtaPrime to access the constants
+
+Revision 1.6  2000/11/30 07:12:50  alibrary
+Introducing new Rndm and QA classes
+
+Revision 1.5  2000/06/29 21:08:27  morsch
+All paramatrisation libraries derive from the pure virtual base class AliGenLib.
+This allows to pass a pointer to a library directly to AliGenParam and avoids the
+use of function pointers in Config.C.
+
+Revision 1.4  2000/06/14 15:21:05  morsch
+Include clean-up (IH)
+
+Revision 1.3  2000/06/09 20:32:54  morsch
+All coding rule violations except RS3 corrected
+
+Revision 1.2  1999/11/04 11:30:48  fca
+Improve comments
+
 Revision 1.1  1999/11/03 17:43:20  fca
 New version from G.Martinez & A.Morsch
 
@@ -42,8 +73,10 @@ New version from G.Martinez & A.Morsch
 //     martinez@subatech.in2p3.fr
 //======================================================================
 
+#include "TMath.h"
+#include "TRandom.h"
+
 #include "AliGenPHOSlib.h"
-#include "AliRun.h"
 
 ClassImp(AliGenPHOSlib)
 
@@ -62,64 +95,100 @@ ClassImp(AliGenPHOSlib)
 //     POWER LAW FOR PT > 500 MEV
 //     MT SCALING BELOW (T=160 MEV)
 //
-  const Double_t p0 = 1.3;
-  const Double_t xn = 8.28;
-  const Double_t xlim=0.5;
-  const Double_t t=0.160;
-  const Double_t xmpi=0.139;
-  const Double_t b=1.;
-  Double_t y, y1, xmpi2, ynorm, a;
+  const Double_t kp0 = 1.3;
+  const Double_t kxn = 8.28;
+  const Double_t kxlim=0.5;
+  const Double_t kt=0.160;
+  const Double_t kxmpi=0.139;
+  const Double_t kb=1.;
+  Double_t y, y1, kxmpi2, ynorm, a;
   Double_t x=*px;
   //
-  y1=TMath::Power(p0/(p0+xlim),xn);
-  xmpi2=xmpi*xmpi;
-  ynorm=b*(TMath::Exp(-sqrt(xlim*xlim+xmpi2)/t));
+  y1=TMath::Power(kp0/(kp0+kxlim),kxn);
+  kxmpi2=kxmpi*kxmpi;
+  ynorm=kb*(TMath::Exp(-sqrt(kxlim*kxlim+kxmpi2)/kt));
   a=ynorm/y1;
-  if (x > xlim)
-    y=a*TMath::Power(p0/(p0+x),xn);
+  if (x > kxlim)
+    y=a*TMath::Power(kp0/(kp0+x),kxn);
   else
-    y=b*TMath::Exp(-sqrt(x*x+xmpi2)/t);
+    y=kb*TMath::Exp(-sqrt(x*x+kxmpi2)/kt);
   return y*x;
 }
-//
-// y-distribution
-//
  Double_t AliGenPHOSlib::YPion( Double_t *py, Double_t *)
 {
-  const Double_t a    = 7000.;   
-  const Double_t dy   = 4.;
+//
+// pion y-distribution
+//
+
+  const Double_t ka    = 7000.;   
+  const Double_t kdy   = 4.;
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
+
+ Int_t AliGenPHOSlib::IpPion(TRandom *ran)
+{
 //                 particle composition pi+, pi0, pi-
 //
- Int_t AliGenPHOSlib::IpPion()
-{
-    Float_t random[1];
-    gMC->Rndm(random,1);
 
-    if ( (3.*random[0])  < 1. ) 
-    {
-          return 211 ;
-    } 
-    else
-    {  
-      if ( (3.*random[0]) >= 2.)
-      {
-         return -211 ;
-      }
-      else 
-      {
+     Float_t random = ran->Rndm();
+
+     if ( (3.*random)  < 1. ) 
+     {
+           return 211 ;
+     } 
+     else
+     {  
+       if ( (3.*random) >= 2.)
+       {
+          return -211 ;
+       }
+       else 
+       {
         return 111  ;
       }
     }
 }
-// End Pions
+
+//End Pions
+//======================================================================
+//    Pi 0 Flat Distribution
+//    Transverse momentum distribution PtPi0Flat
+//    Rapidity distribution YPi0Flat
+//    Particle distribution IdPi0Flat  111 (pi0)
+//
+
+Double_t AliGenPHOSlib::PtPi0Flat(Double_t *px, Double_t *)
+{
+//     Pion transverse momentum flat distribution 
+
+return 1;
+
+}
+
+Double_t AliGenPHOSlib::YPi0Flat( Double_t *py, Double_t *)
+{
+
+// pion y-distribution
+//
+  return 1.;
+}
+
+ Int_t AliGenPHOSlib::IpPi0Flat(TRandom *)
+{
+
+//                 particle composition pi0
+//
+        return 111 ;
+}
+// End Pi0Flat
 //============================================================= 
 //
+ Double_t AliGenPHOSlib::PtScal(Double_t pt, Int_t np)
+{
 // Mt-scaling
 // Fonction for the calculation of the Pt distribution for a 
 // given particle np, from the pion Pt distribution using the 
@@ -127,59 +196,61 @@ ClassImp(AliGenPHOSlib)
 // aliroot version 3.01, and was extended for baryons
 // np = 1=>Pions 2=>Kaons 3=>Etas 4=>Omegas 5=>ETA' 6=>PHI
 //      7=>BARYONS-BARYONBARS
- Double_t AliGenPHOSlib::PtScal(Double_t pt, Int_t np)
-{
+
   //    SCALING EN MASSE PAR RAPPORT A PTPI
   //    MASS                1=>PI,  2=>K, 3=>ETA, 4=>OMEGA,  5=>ETA',6=>PHI
-  const Double_t hm[10] = {0.1396, 0.494,  0.547,    0.782,   0.957,   1.02, 
+  const Double_t khm[10] = {0.1396, 0.494,  0.547,    0.782,   0.957,   1.02, 
   //    MASS               7=>BARYON-BARYONBAR  
                                          0.938, 0. , 0., 0.};
   //     VALUE MESON/PI AT 5 GEV
-  const Double_t fmax[10]={1., 1., 1., 1., 1., 1., 1., 1., 1., 1.};
+  const Double_t kfmax[10]={1., 1., 1., 1., 1., 1., 1., 1., 1., 1.};
   np--;
-  Double_t f5=TMath::Power(((sqrt(100.018215)+2.)/(sqrt(100.+hm[np]*hm[np])+2.0)),12.3);
-  Double_t fmax2=f5/fmax[np];
+  Double_t f5=TMath::Power(((sqrt(100.018215)+2.)/(sqrt(100.+khm[np]*khm[np])+2.0)),12.3);
+  Double_t kfmax2=f5/kfmax[np];
   // PIONS
   Double_t ptpion=100.*PtPion(&pt, (Double_t*) 0);
   Double_t fmtscal=TMath::Power(((sqrt(pt*pt+0.018215)+2.)/
-                                 (sqrt(pt*pt+hm[np]*hm[np])+2.0)),12.3)/ fmax2;
+                                 (sqrt(pt*pt+khm[np]*khm[np])+2.0)),12.3)/ kfmax2;
   return fmtscal*ptpion;
+
 }
 // End Scaling
 //============================================================================
 //    K  A  O  N  S
-// kaon
-//                pt-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::PtKaon( Double_t *px, Double_t *)
 {
+//                kaon
+//                pt-distribution
+//____________________________________________________________
+
   return PtScal(*px,2);  //  2==> Kaon in the PtScal function
 }
 
-// y-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::YKaon( Double_t *py, Double_t *)
 {
-  const Double_t a    = 1000.;
-  const Double_t dy   = 4.;
+// y-distribution
+//____________________________________________________________
+
+  const Double_t ka    = 1000.;
+  const Double_t kdy   = 4.;
 
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
 
+ Int_t AliGenPHOSlib::IpKaon(TRandom *ran)
+{
 //                 particle composition
 //
- Int_t AliGenPHOSlib::IpKaon()
-{
-    Float_t random[1],random2[1];
-    gMC->Rndm(random,1);
-    gMC->Rndm(random2,1);
-    if (random2[0] < 0.5) 
+
+    Float_t random = ran->Rndm();
+    Float_t random2 = ran->Rndm();
+    if (random2 < 0.5) 
     {
-      if (random[0] < 0.5) {       
+      if (random < 0.5) {       
         return  321;   //   K+
       } else {
         return -321;   // K-
@@ -187,7 +258,7 @@ ClassImp(AliGenPHOSlib)
     }
     else
     {  
-      if (random[0] < 0.5) {       
+      if (random < 0.5) {       
         return  130;   // K^0 short
       } else {  
         return  310;   // K^0 long
@@ -198,166 +269,212 @@ ClassImp(AliGenPHOSlib)
 //============================================================================
 //============================================================================
 //   E  T  A  S
-// etas
-//                pt-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::PtEta( Double_t *px, Double_t *)
 {
+//                etas
+//                pt-distribution
+//____________________________________________________________
+
   return PtScal(*px,3);  //  3==> Eta in the PtScal function
 }
 
-// y-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::YEta( Double_t *py, Double_t *)
 {
-  const Double_t a    = 1000.;
-  const Double_t dy   = 4.;
+// y-distribution
+//____________________________________________________________
+
+  const Double_t ka    = 1000.;
+  const Double_t kdy   = 4.;
 
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
 
+ Int_t AliGenPHOSlib::IpEta(TRandom *)
+{
 //                 particle composition
 //
- Int_t AliGenPHOSlib::IpEta()
-{
+
         return  221;   //   eta
 }
 // End Etas
+
+//======================================================================
+//    Eta Flat Distribution
+//    Transverse momentum distribution PtEtaFlat
+//    Rapidity distribution YEtaFlat
+//    Particle distribution IdEtaFlat  111 (pi0)
+//
+
+Double_t AliGenPHOSlib::PtEtaFlat(Double_t *px, Double_t *)
+{
+//     Eta transverse momentum flat distribution 
+
+  return 1;
+
+}
+
+Double_t AliGenPHOSlib::YEtaFlat( Double_t *py, Double_t *)
+{
+//
+// pion y-distribution
+//
+  return 1.;
+}
+
+ Int_t AliGenPHOSlib::IpEtaFlat(TRandom *)
+{
+//
+//                 particle composition eta
+//
+        return 221 ;
+}
+// End Pi0Flat
 //============================================================================
 //============================================================================
 //    O  M  E  G  A  S
+ Double_t AliGenPHOSlib::PtOmega( Double_t *px, Double_t *)
+{
 // omegas
 //                pt-distribution
 //____________________________________________________________
- Double_t AliGenPHOSlib::PtOmega( Double_t *px, Double_t *)
-{
+
   return PtScal(*px,4);  //  4==> Omega in the PtScal function
 }
 
-// y-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::YOmega( Double_t *py, Double_t *)
 {
-  const Double_t a    = 1000.;
-  const Double_t dy   = 4.;
+// y-distribution
+//____________________________________________________________
+
+  const Double_t ka    = 1000.;
+  const Double_t kdy   = 4.;
 
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
 
+ Int_t AliGenPHOSlib::IpOmega(TRandom *)
+{
 //                 particle composition
 //
- Int_t AliGenPHOSlib::IpOmega()
-{
+
         return  223;   // Omega
 }
 // End Omega
 //============================================================================
 //============================================================================
 //    E  T  A  P  R  I  M  E
+ Double_t AliGenPHOSlib::PtEtaprime( Double_t *px, Double_t *)
+{
 // etaprime
 //                pt-distribution
 //____________________________________________________________
- Double_t AliGenPHOSlib::PtEtaprime( Double_t *px, Double_t *)
-{
+
   return PtScal(*px,5);  //  5==> Etaprime in the PtScal function
 }
 
-// y-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::YEtaprime( Double_t *py, Double_t *)
 {
-  const Double_t a    = 1000.;
-  const Double_t dy   = 4.;
+// y-distribution
+//____________________________________________________________
+
+  const Double_t ka    = 1000.;
+  const Double_t kdy   = 4.;
 
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
 
+ Int_t AliGenPHOSlib::IpEtaprime(TRandom *)
+{
 //                 particle composition
 //
- Int_t AliGenPHOSlib::IpEtaprime()
-{
+
         return  331;   //   Etaprime
 }
 // End EtaPrime
 //===================================================================
 //============================================================================
 //    P  H  I   S
+ Double_t AliGenPHOSlib::PtPhi( Double_t *px, Double_t *)
+{
 // phi
 //                pt-distribution
 //____________________________________________________________
- Double_t AliGenPHOSlib::PtPhi( Double_t *px, Double_t *)
-{
+
   return PtScal(*px,6);  //  6==> Phi in the PtScal function
 }
 
-// y-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::YPhi( Double_t *py, Double_t *)
 {
-  const Double_t a    = 1000.;
-  const Double_t dy   = 4.;
+// y-distribution
+//____________________________________________________________
+
+  const Double_t ka    = 1000.;
+  const Double_t kdy   = 4.;
 
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
 
+ Int_t AliGenPHOSlib::IpPhi(TRandom *)
+{
 //                 particle composition
 //
- Int_t AliGenPHOSlib::IpPhi()
-{    
+    
         return  333;   //   Phi      
 }
 // End Phis
 //===================================================================
 //============================================================================
 //    B  A  R  Y  O  N  S  == protons, protonsbar, neutrons, and neutronsbars
+ Double_t AliGenPHOSlib::PtBaryon( Double_t *px, Double_t *)
+{
 // baryons
 //                pt-distribution
 //____________________________________________________________
- Double_t AliGenPHOSlib::PtBaryon( Double_t *px, Double_t *)
-{
+
   return PtScal(*px,7);  //  7==> Baryon in the PtScal function
 }
 
-// y-distribution
-//____________________________________________________________
  Double_t AliGenPHOSlib::YBaryon( Double_t *py, Double_t *)
 {
-  const Double_t a    = 1000.;
-  const Double_t dy   = 4.;
+// y-distribution
+//____________________________________________________________
+
+  const Double_t ka    = 1000.;
+  const Double_t kdy   = 4.;
 
 
   Double_t y=TMath::Abs(*py);
   //
-  Double_t ex = y*y/(2*dy*dy);
-  return a*TMath::Exp(-ex);
+  Double_t ex = y*y/(2*kdy*kdy);
+  return ka*TMath::Exp(-ex);
 }
 
+ Int_t AliGenPHOSlib::IpBaryon(TRandom *ran)
+{
 //                 particle composition
 //
- Int_t AliGenPHOSlib::IpBaryon()
-{
-    Float_t random[1],random2[1];
-    gMC->Rndm(random,1);
-    gMC->Rndm(random2,1);
-    if (random2[0] < 0.5) 
+
+    Float_t random = ran->Rndm();
+    Float_t random2 = ran->Rndm();
+    if (random2 < 0.5) 
     {
-      if (random[0] < 0.5) {       
+      if (random < 0.5) {       
         return  2212;   //   p
       } else {
         return -2212;   // pbar
@@ -365,7 +482,7 @@ ClassImp(AliGenPHOSlib)
     }
     else
     {  
-      if (random[0] < 0.5) {       
+      if (random < 0.5) {       
         return  2112;   // n
       } else {  
         return -2112;   // n bar
@@ -377,28 +494,35 @@ ClassImp(AliGenPHOSlib)
 
 
 typedef Double_t (*GenFunc) (Double_t*,  Double_t*);
- GenFunc AliGenPHOSlib::GetPt(Param_t param)
+ GenFunc AliGenPHOSlib::GetPt(Int_t param, const char* tname) const
 {
+// Return pinter to pT parameterisation
     GenFunc func;
     
     switch (param)
     {
-    case Pion:     
+    case kPion:     
         func=PtPion;
         break;
-    case Kaon:
+    case kPi0Flat:     
+        func=PtPi0Flat;
+        break;
+    case kKaon:
         func=PtKaon;
         break;
-    case Eta:
+    case kEta:
         func=PtEta;
         break;
-    case Omega:
+    case kEtaFlat:
+        func=PtEtaFlat;
+        break;
+    case kOmega:
         func=PtOmega;
         break;
-    case Etaprime:
+    case kEtaPrime:
         func=PtEtaprime;
         break;
-    case Baryon:
+    case kBaryon:
         func=PtBaryon;
         break;
     default:
@@ -408,30 +532,37 @@ typedef Double_t (*GenFunc) (Double_t*,  Double_t*);
     return func;
 }
 
- GenFunc AliGenPHOSlib::GetY(Param_t param)
+ GenFunc AliGenPHOSlib::GetY(Int_t param, const char* tname) const
 {
+// Return pointer to Y parameterisation
     GenFunc func;
     switch (param)
     {
-    case Pion:
+    case kPion:
         func=YPion;
         break;
-    case Kaon:
+    case kPi0Flat:
+        func=YPi0Flat;
+        break;
+    case kKaon:
         func=YKaon;
         break;
-    case Eta:
+    case kEta:
         func=YEta;
         break;
-    case Omega:
+   case kEtaFlat:
+        func=YEtaFlat;
+        break;
+    case kOmega:
         func=YOmega;
         break;
-    case Etaprime:
+    case kEtaPrime:
         func=YEtaprime;
         break;
-    case Phi:
+    case kPhi:
         func=YPhi;
         break;
-    case Baryon:
+    case kBaryon:
         func=YBaryon;
         break;
     default:
@@ -440,32 +571,39 @@ typedef Double_t (*GenFunc) (Double_t*,  Double_t*);
     }
     return func;
 }
-typedef Int_t (*GenFuncIp) ();
- GenFuncIp AliGenPHOSlib::GetIp(Param_t param)
+typedef Int_t (*GenFuncIp) (TRandom *);
+ GenFuncIp AliGenPHOSlib::GetIp(Int_t param,  const char* tname) const
 {
+// Return pointer to particle composition
     GenFuncIp func;
     switch (param)
     {
-    case Pion:
-        
+    case kPion:       
         func=IpPion;
         break;
-    case Kaon:
+    case kPi0Flat:       
+        func=IpPi0Flat;
+        break;
+    case kKaon:
         func=IpKaon;
         break;
-    case Eta:
+    case kEta:
         func=IpEta;
         break;
-    case Omega:
+    case kEtaFlat:
+        func=IpEtaFlat;
+        break;
+       
+    case kOmega:
         func=IpOmega;
         break;
-    case Etaprime:
+    case kEtaPrime:
         func=IpEtaprime;
         break;
-    case Phi:
+    case kPhi:
         func=IpPhi;
         break;
-    case Baryon:
+    case kBaryon:
         func=IpBaryon;
         break;
     default: