]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenPHOSlib.h
added tcsh UI
[u/mrichter/AliRoot.git] / EVGEN / AliGenPHOSlib.h
CommitLineData
f87cfe57 1#ifndef ALIGENPHOSLIB_H
2#define ALIGENPHOSLIB_H
b22ee262 3#include "AliGenLib.h"
886b6f73 4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
65fb704d 9class TRandom;
10
886b6f73 11class AliGenPHOSlib :
b22ee262 12public AliGenLib
886b6f73 13{
14 public:
34f60c01 15 enum constants{kPion, kKaon, kEta, kOmega, kEtaPrime, kPhi, kBaryon};
886b6f73 16// pions
f87cfe57 17 static Double_t PtPion(Double_t *px, Double_t *dummy);
886b6f73 18 static Double_t PtScal(Double_t pt, Int_t np);
f87cfe57 19 static Double_t YPion( Double_t *py, Double_t *dummy);
65fb704d 20 static Int_t IpPion(TRandom* ran);
886b6f73 21// kaons
f87cfe57 22 static Double_t PtKaon(Double_t *px, Double_t *dummy);
23 static Double_t YKaon( Double_t *py, Double_t *dummy);
65fb704d 24 static Int_t IpKaon(TRandom* ran);
886b6f73 25// etas
f87cfe57 26 static Double_t PtEta(Double_t *px, Double_t *dummy);
27 static Double_t YEta( Double_t *py, Double_t *dummy);
65fb704d 28 static Int_t IpEta(TRandom *ran);
886b6f73 29// omegas
f87cfe57 30 static Double_t PtOmega(Double_t *px, Double_t *dummy);
31 static Double_t YOmega( Double_t *py, Double_t *dummy);
65fb704d 32 static Int_t IpOmega(TRandom *ran);
886b6f73 33// etaprime
f87cfe57 34 static Double_t PtEtaprime(Double_t *px, Double_t *dummy);
35 static Double_t YEtaprime( Double_t *py, Double_t *dummy);
65fb704d 36 static Int_t IpEtaprime(TRandom* ran);
886b6f73 37// phis
f87cfe57 38 static Double_t PtPhi(Double_t *px, Double_t *dummy);
39 static Double_t YPhi( Double_t *py, Double_t *dummy);
65fb704d 40 static Int_t IpPhi(TRandom* ran);
886b6f73 41// baryons
f87cfe57 42 static Double_t PtBaryon(Double_t *px, Double_t *dummy);
43 static Double_t YBaryon( Double_t *py, Double_t *dummy);
65fb704d 44 static Int_t IpBaryon(TRandom *ran);
886b6f73 45
34f60c01 46 GenFunc GetPt(Int_t param, const char* tname=0);
47 GenFunc GetY (Int_t param, const char* tname=0);
48 GenFuncIp GetIp(Int_t param, const char* tname=0);
762c0d1d 49 ClassDef(AliGenPHOSlib,0) // Library providing y and pT parameterisations
886b6f73 50};
51#endif
52
53
54
55
56
57
58