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