]> git.uio.no Git - u/mrichter/AliRoot.git/blob - LHAPDF/AliStructFuncType.h
- Changed module names to be the same as the libraries names;
[u/mrichter/AliRoot.git] / LHAPDF / AliStructFuncType.h
1 #ifndef ALISTRUCTFUNCTYPE_H
2 #define ALISTRUCTFUNCTYPE_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 // Helper class to interface pdflib and the TPythia 
9 // the c++ interface for Pythia
10 // Author: andreas.morsch@cern.ch
11
12 #include <TObject.h>
13
14 class AliStructFuncType : public TObject {
15     
16  public:
17     AliStructFuncType(){;}
18     virtual ~AliStructFuncType(){;}
19     static void PdfSet(char parm[20][20], Double_t value[20]);
20     static void StructA(Double_t xx, Double_t qq, Double_t a,
21                         Double_t& upv, Double_t& dnv, Double_t& usea,
22                         Double_t& dsea,
23                         Double_t& str, Double_t& chm, Double_t& bot,
24                         Double_t& top, Double_t& gl);
25     ClassDef(AliStructFuncType,1) // Library for partonic energy loss
26 };
27
28 typedef enum
29 {
30    kCTEQ4L     = 19170,    
31    kCTEQ4M     = 19150,    
32    kCTEQ5L     = 19070,
33    kCTEQ5M     = 19050,
34    kGRVLO98    = 80060,    
35    kCTEQ6      = 10040,
36    kCTEQ61     = 10100,
37    kCTEQ6m     = 10050,
38    kCTEQ6l     = 10041,
39    kCTEQ6ll    = 10042
40 }
41 StrucFunc_t;
42
43 #endif
44