]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliAODMCHeader.h
Adding NSD analysis as well as new features and removing warnings
[u/mrichter/AliRoot.git] / STEER / AliAODMCHeader.h
index c4c675a1beb25e4d9cedfe29ae17accf68268af0..499e26813c89f25743d1d8d07b70884ba1d8bbd6 100644 (file)
@@ -43,6 +43,12 @@ public:
   virtual void      SetImpactParameter(Double_t b){fImpactPar = b;}
   virtual Double_t  GetImpactParameter() const {return fImpactPar;}
 
+  virtual void      SetPtHard(Double_t f){fPtHard = f;}
+  virtual Double_t  GetPtHard() const {return fPtHard;}
+
+  virtual void      SetReactionPlaneAngle(Double_t b){fReactionPlaneAngle = b;}
+  virtual Double_t  GetReactionPlaneAngle() const {return fReactionPlaneAngle;}
+
   virtual void      SetEventType(UInt_t eventType){fEventType = eventType;}
   virtual UInt_t    GetEventType() const {return fEventType;}
 
@@ -66,10 +72,11 @@ private:
   TString      fGenerator;         // Name of the generator, combination of names in case of gen cocktail 
   Double32_t   fVertex[3];         // MC vertex
   Double32_t   fImpactPar;         // Impact parameter in case of Pb+Pb
+  Double32_t   fPtHard;            // [0,0,12] Pt hard for jet events
   UInt_t       fEventType;         // MC Process Type of Event
-
+  Double32_t   fReactionPlaneAngle;// MC Reaction Plane Angle
   
-  ClassDef(AliAODMCHeader,1)
+  ClassDef(AliAODMCHeader,3)
 
 };