]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliGenGeVSimEventHeader.h
Class moved.
[u/mrichter/AliRoot.git] / STEER / AliGenGeVSimEventHeader.h
diff --git a/STEER/AliGenGeVSimEventHeader.h b/STEER/AliGenGeVSimEventHeader.h
new file mode 100644 (file)
index 0000000..4dc7e96
--- /dev/null
@@ -0,0 +1,47 @@
+#ifndef AliGenGeVSimEventHeader_h
+#define AliGenGeVSimEventHeader_h
+
+//
+// Event header for GeVSim event generator
+// support event plane and elliptic flow
+// in next release will suport full differential 
+// directed and elliptic flow
+//
+// Sylwester Radomski, GSI
+// mail: S.Radomski@gsi
+// 31 Oct, 2002
+//
+
+#include "AliGenEventHeader.h"
+
+
+class AliGenGeVSimEventHeader: public AliGenEventHeader {
+
+ public:
+  
+  //Constructors
+  AliGenGeVSimEventHeader();
+  AliGenGeVSimEventHeader(const char *name);
+  ~AliGenGeVSimEventHeader() {}
+
+  //Getters
+  Float_t GetEventPlane() const {return fEventPlane;}
+  Float_t GetEllipticFlow() const {return fEllipticFlow;}
+
+  //Setters
+  void SetEventPlane(Float_t psi);
+  void SetEllipticFlow(Float_t v2);
+
+ private:
+  
+  Float_t fEventPlane;       // event plane in rad.
+  Float_t fEllipticFlow;     // elliptic flow (fast solution)
+
+ public:
+  ClassDef(AliGenGeVSimEventHeader, 1) // Event Header for GeVSim
+
+};
+
+
+
+#endif