]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenLib.h
Unused includes removed.
[u/mrichter/AliRoot.git] / EVGEN / AliGenLib.h
1 #ifndef ALIGENLIB_H
2 #define ALIGENLIB_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 <TObject.h>
9 #include "GenTypeDefs.h"
10
11 class AliGenLib :
12 public TObject
13 {
14  public:
15 //
16     typedef Double_t (*GenFunc)  (Double_t *, Double_t *);
17     typedef Int_t    (*GenFuncIp)();    
18     virtual GenFunc   GetPt(Param_t param, const char *tname)   = 0;
19     virtual GenFunc   GetY (Param_t param, const char *tname)  = 0;
20     virtual GenFuncIp GetIp(Param_t param, const char *tname)  = 0;    
21     ClassDef(AliGenLib,1) // Library providing y and pT parameterisations
22 };
23 #endif
24
25
26
27
28
29
30