]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenMUONlib.h
Introduction of the reference to Copyright and cvs Id
[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 <TROOT.h>
9 #include "GenTypeDefs.h"
10 class AliGenMUONlib :
11 public TObject
12 {
13  public:
14 // pions
15     static Double_t PtPion(Double_t *px, Double_t *);
16     static Double_t PtScal(Double_t pt, Int_t np);
17     static Double_t YPion( Double_t *py, Double_t *);
18     static Int_t    IpPion();
19 // kaons
20     static Double_t PtKaon(Double_t *px, Double_t *);
21     static Double_t YKaon( Double_t *py, Double_t *);
22     static Int_t    IpKaon();
23 // Phi
24     static Double_t PtPhi( Double_t *px, Double_t *);
25     static Double_t YPhi( Double_t *px, Double_t *);
26     static Int_t    IpPhi();
27 // J/Psi     
28     static Double_t PtJpsi( Double_t *px, Double_t *);
29     static Double_t YJpsi(Double_t *py, Double_t *);
30     static Int_t    IpJpsi();
31 // Upsilon    
32     static Double_t PtUpsilon( Double_t *px, Double_t * );
33     static Double_t YUpsilon(Double_t *py, Double_t *);
34     static Int_t    IpUpsilon();
35 //
36 // Charm    
37     static Double_t PtCharm( Double_t *px, Double_t * );
38     static Double_t YCharm(Double_t *py, Double_t *);
39     static Int_t    IpCharm();
40 //
41 // Beauty
42     static Double_t PtBeauty( Double_t *px, Double_t * );
43     static Double_t YBeauty(Double_t *py, Double_t *);
44     static Int_t    IpBeauty();
45 //
46     typedef Double_t (*GenFunc)  (Double_t *, Double_t *);
47     typedef Int_t    (*GenFuncIp)();    
48     static GenFunc   GetPt(Param_t param);
49     static GenFunc   GetY(Param_t param);
50     static GenFuncIp GetIp(Param_t param);    
51     ClassDef(AliGenMUONlib,1)
52 };
53 #endif
54
55
56
57
58
59
60