]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenHIJINGpara.h
Coding convention clean-up
[u/mrichter/AliRoot.git] / EVGEN / AliGenHIJINGpara.h
1 #ifndef ALIGENHIJINGPARA_H
2 #define ALIGENHIJINGPARA_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 // Parameterisation of pi and K, eta and pt distributions
9 // used for the ALICE TDRs.
10 // Author: andreas.morsch@cern.ch
11
12 #include "AliGenerator.h"
13 class TF1;
14
15 class AliGenHIJINGpara : public AliGenerator
16 {
17  public:
18
19   AliGenHIJINGpara();
20   AliGenHIJINGpara(Int_t npart);
21   AliGenHIJINGpara(const AliGenHIJINGpara &HIJINGpara);
22      
23   virtual ~AliGenHIJINGpara();
24   virtual void Generate();
25   virtual void Init();
26   AliGenHIJINGpara & operator=(const AliGenHIJINGpara & rhs);
27  protected:
28
29   TF1* fPtpi; // Parametrised pt distribution for pi
30   TF1* fPtka; // Parametrised pt distribution for ka
31   TF1* fETApic; // Parametrised eta distribution for pi
32   TF1* fETAkac; // Parametrised eta distribution fro ka
33
34   ClassDef(AliGenHIJINGpara,1) // Hijing parametrisation generator
35 };
36 #endif
37
38
39
40
41
42
43
44
45
46