]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliPDG.cxx
Added methods for finding a given module in the DDL map (F. Prino)
[u/mrichter/AliRoot.git] / STEER / AliPDG.cxx
index f8a302625ad41401ec40fc295442dbaa6a6fa7af..70b36681a9c79bb06ba67866fc86afa1e9fb6bd7 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.2  2001/01/31 14:32:42  morsch
-Some B mesons added
-
-Revision 1.1  2000/12/21 16:48:39  morsch
-AliPDG class, first commit.
-
-*/
+/* $Id$ */
 
 // Class to encapsulate the ALICE updates to TDatabasePDG.h
 // Can be used by TGeant3 and TGeant4
@@ -41,25 +33,54 @@ ClassImp(AliPDG)
 // Add particles to the PDG data base
 
     TDatabasePDG *pdgDB = TDatabasePDG::Instance();
-
-    const Int_t kion=10000000;
     const Int_t kspe=50000000;
+/*
+    const Int_t kion=10000000;
 
     const Double_t kAu2Gev=0.9314943228;
     const Double_t khSlash = 1.0545726663e-27;
     const Double_t kErg2Gev = 1/1.6021773349e-3;
     const Double_t khShGev = khSlash*kErg2Gev;
     const Double_t kYear2Sec = 3600*24*365.25;
+
+*/
 //
 // Bottom mesons
 // mass and life-time from PDG
 //
+  pdgDB->AddParticle("Upsilon(3S)","Upsilon(3S)",10.3552,kTRUE,
+                     0,1,"Bottonium",200553);
+
+// QCD diffractive states
+  pdgDB->AddParticle("rho_diff0","rho_diff0",0,kTRUE,
+                    0,0,"QCD diffr. state",9900110);
+  pdgDB->AddParticle("pi_diffr+","pi_diffr+",0,kTRUE,
+                    0,1,"QCD diffr. state",9900210);
+  pdgDB->AddParticle("omega_di","omega_di",0,kTRUE,
+                    0,0,"QCD diffr. state",9900220);
+  pdgDB->AddParticle("phi_diff","phi_diff",0,kTRUE,
+                    0,0,"QCD diffr. state",9900330);
+  pdgDB->AddParticle("J/psi_di","J/psi_di",0,kTRUE,
+                    0,0,"QCD diffr. state",9900440);
+  pdgDB->AddParticle("n_diffr0","n_diffr0",0,kTRUE,
+                    0,0,"QCD diffr. state",9902110);
+  pdgDB->AddParticle("p_diffr+","p_diffr+",0,kTRUE,
+                    0,1,"QCD diffr. state",9902210);
+
+// Some particles produced by HERWIG
+  pdgDB->AddParticle("rho3(1690)0","rho(1690)0", 1.69, kTRUE,
+                    0, 0,"rho", 117);
+  pdgDB->AddParticle("pion2(1670)0","pion2(1670)0", 1.67, kTRUE,
+                    0, 0,"pion", 10115);
+  pdgDB->AddParticle("omega(1650)","omega(1650)", 1.65, kTRUE,
+                    0, 0,"pion", 30223);
+
 // Done by default now from Pythia6 table!
 //
 //
 // Ions 
 //
-
+/*
   pdgDB->AddParticle("Deuteron","Deuteron",2*kAu2Gev+8.071e-3,kTRUE,
                      0,1,"Ion",kion+10020);
   pdgDB->AddParticle("Triton","Triton",3*kAu2Gev+14.931e-3,kFALSE,
@@ -68,13 +89,16 @@ ClassImp(AliPDG)
                      khShGev/(12.33*kYear2Sec),2,"Ion",kion+20040);
   pdgDB->AddParticle("HE3","HE3",3*kAu2Gev+14.931e-3,kFALSE,
                      0,2,"Ion",kion+20030);
+*/
 // Special particles
 // 
   pdgDB->AddParticle("Cherenkov","Cherenkov",0,kFALSE,
                     0,0,"Special",kspe+50);
   pdgDB->AddParticle("FeedbackPhoton","FeedbackPhoton",0,kFALSE,
                     0,0,"Special",kspe+51);
-
+  pdgDB->AddParticle("Lambda1520","Lambda1520",1.5195,kFALSE,
+                    0.0156,0,"Resonance",3124);
+  pdgDB->AddAntiParticle("Lambda1520bar",-3124);
 }