]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenMUONlib.h
Obsolete now. Type defs have been moved to classes.
[u/mrichter/AliRoot.git] / EVGEN / AliGenMUONlib.h
1 #ifndef ALIGENMUONLIB_H
2 #define ALIGENMUONLIB_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 #include "AliGenLib.h"
9
10 class AliGenMUONlib :
11   public AliGenLib
12 {
13  public:
14 // pions
15     static Double_t PtPion(Double_t *px, Double_t *dummy);
16     static Double_t PtScal(Double_t pt, Int_t np);
17     static Double_t YPion( Double_t *py, Double_t *dummy);
18     static Int_t    IpPion(TRandom *ran);
19 // kaons
20     static Double_t PtKaon(Double_t *px, Double_t *dummy);
21     static Double_t YKaon( Double_t *py, Double_t *dummy);
22     static Int_t    IpKaon(TRandom *ran);
23 // Phi
24     static Double_t PtPhi( Double_t *px, Double_t *dummy);
25     static Double_t YPhi( Double_t *px, Double_t *dummy);
26     static Int_t    IpPhi(TRandom *ran);
27 // J/Psi     
28     static Double_t PtJpsi( Double_t *px, Double_t *dummy);
29     static Double_t YJpsi(Double_t *py, Double_t *dummy);
30     static Int_t    IpJpsi(TRandom *ran);
31 // Upsilon    
32     static Double_t PtUpsilon( Double_t *px, Double_t *dummy );
33     static Double_t YUpsilon(Double_t *py, Double_t *dummy);
34     static Int_t    IpUpsilon(TRandom *ran);
35 //
36 // Charm    
37     static Double_t PtCharm( Double_t *px, Double_t *dummy );
38     static Double_t YCharm(Double_t *py, Double_t *dummy);
39     static Int_t    IpCharm(TRandom *ran);
40 //
41 // Beauty
42     static Double_t PtBeauty( Double_t *px, Double_t *dummy );
43     static Double_t YBeauty(Double_t *py, Double_t *dummy);
44     static Int_t    IpBeauty(TRandom *ran);
45 //
46     GenFunc   GetPt(Param_t param, const char* tname=0);
47     GenFunc   GetY (Param_t param, const char* tname=0);
48     GenFuncIp GetIp(Param_t param, const char* tname=0);    
49     ClassDef(AliGenMUONlib,0) // Library providing y and pT parameterisations
50 };
51 #endif
52
53
54
55
56
57
58