]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EVGEN/AliGenPMDlib.h
Unused includes removed.
[u/mrichter/AliRoot.git] / EVGEN / AliGenPMDlib.h
... / ...
CommitLineData
1#ifndef ALIGENPMDLIB_H
2#define ALIGENPMDLIB_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
10class AliGenPMDlib :
11public AliGenLib
12{
13 public:
14// Neutral pions
15 static Double_t PtPi0(Double_t *px, Double_t *dummy);
16 static Double_t PtScal(Double_t pt, Int_t np);
17 static Double_t YPi0( Double_t *py, Double_t *dummy);
18 static Int_t IpPi0();
19// Etas
20 static Double_t PtEta(Double_t *px, Double_t *dummy);
21 static Double_t YEta( Double_t *py, Double_t *dummy);
22 static Int_t IpEta();
23//
24 GenFunc GetPt(Param_t param, const char* tname=0);
25 GenFunc GetY (Param_t param, const char* tname=0);
26 GenFuncIp GetIp(Param_t param, const char* tname=0);
27 ClassDef(AliGenPMDlib,1) // Library providing y and pT parameterisations
28};
29#endif
30
31
32
33
34
35
36