]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenMUONlib.h
Remove unused files and add ifdef at the beginning of .h file
[u/mrichter/AliRoot.git] / EVGEN / AliGenMUONlib.h
CommitLineData
fe4da5cc 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
fe4da5cc 8#include <TROOT.h>
753690b0 9#include "GenTypeDefs.h"
fe4da5cc 10class AliGenMUONlib :
11public TObject
12{
13 public:
753690b0 14// pions
fe4da5cc 15 static Double_t PtPion(Double_t *px, Double_t *);
16 static Double_t PtScal(Double_t pt, Int_t np);
753690b0 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();
fe4da5cc 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)();
753690b0 48 static GenFunc GetPt(Param_t param);
49 static GenFunc GetY(Param_t param);
50 static GenFuncIp GetIp(Param_t param);
fe4da5cc 51 ClassDef(AliGenMUONlib,1)
52};
53#endif
54
753690b0 55
56
57
58
59
60