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