]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVGEN/AliStructFuncType.h
Add possibility to change proton direction.
[u/mrichter/AliRoot.git] / EVGEN / AliStructFuncType.h
index fc103c011e2229dfcc2df60ac84e7ca8c812392f..3c800cbfafb4e1a61e0de15910bccc300c52cc3e 100644 (file)
@@ -1,10 +1,30 @@
-#ifndef ALISTRUCFUNCTYPE_H
-#define ALISTRUCFUNCTYPE_H
+#ifndef ALISTRUCTFUNCTYPE_H
+#define ALISTRUCTFUNCTYPE_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
 /* $Id$ */
 
+// Helper class to interface pdflib and the TPythia 
+// the c++ interface for Pythia
+// Author: andreas.morsch@cern.ch
+
+#include <TObject.h>
+
+class AliStructFuncType : public TObject {
+    
+ public:
+    AliStructFuncType(){;}
+    virtual ~AliStructFuncType(){;}
+    static void PdfSet(char parm[20][20], Double_t value[20]);
+    static void StructA(Double_t xx, Double_t qq, Double_t a,
+                       Double_t& upv, Double_t& dnv, Double_t& usea,
+                       Double_t& dsea,
+                       Double_t& str, Double_t& chm, Double_t& bot,
+                       Double_t& top, Double_t& gl);
+    ClassDef(AliStructFuncType,1) // Library for partonic energy loss
+};
+
 typedef enum
 {
     kDOSet1     = 1006,
@@ -21,4 +41,6 @@ typedef enum
     kGRVLO98    = 5012
 }
 StrucFunc_t;
+
 #endif
+