]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenLib.h
Corrected path to mapping libraries.
[u/mrichter/AliRoot.git] / EVGEN / AliGenLib.h
CommitLineData
b22ee262 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
5d1f1244 6/* $Id$ */
b22ee262 7
8#include <TObject.h>
65fb704d 9
65fb704d 10class TRandom;
b22ee262 11
12class AliGenLib :
65fb704d 13 public TObject
b22ee262 14{
15 public:
16//
675e9664 17 virtual ~AliGenLib(){}
b22ee262 18 typedef Double_t (*GenFunc) (Double_t *, Double_t *);
65fb704d 19 typedef Int_t (*GenFuncIp)(TRandom *);
d5b6b483 20 virtual GenFunc GetPt(Int_t param, const char *tname) const = 0;
21 virtual GenFunc GetY (Int_t param, const char *tname) const = 0;
22 virtual GenFuncIp GetIp(Int_t param, const char *tname) const = 0;
762c0d1d 23 ClassDef(AliGenLib,0) // Library providing y and pT parameterisations
b22ee262 24};
25#endif
26
27
28
29
30
31
32