]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenLib.h
Digitize:
[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>
9#include "GenTypeDefs.h"
10
11class AliGenLib :
12public 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;
762c0d1d 21 ClassDef(AliGenLib,0) // Library providing y and pT parameterisations
b22ee262 22};
23#endif
24
25
26
27
28
29
30