]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliGenEposEventHeader.cxx
Algorithm to do event inspection - trigger, vertex
[u/mrichter/AliRoot.git] / STEER / AliGenEposEventHeader.cxx
index 4e2e2e683d5ede84e7330a2fac486d7fe333ed2e..3976a580c60f6c867eaa81ee34c727b5c0186dbd 100644 (file)
@@ -1,3 +1,20 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/* $Id$ */
+
 /*
  * AliGenEposEventHeader.h
  * 
  */
 
 #include "AliGenEposEventHeader.h"
-#include "TGenerator.h"
 
 ClassImp(AliGenEposEventHeader)
 
+
 AliGenEposEventHeader::AliGenEposEventHeader(const char* name):
     AliGenEventHeader(name),
     fBimevt(0),
@@ -35,7 +52,7 @@ AliGenEposEventHeader::AliGenEposEventHeader(const char* name):
     fZppevt(0),
     fZptevt(0)
 {
-
+// Constructor
 }
 
 AliGenEposEventHeader::AliGenEposEventHeader() :     fBimevt(0),
@@ -60,51 +77,6 @@ AliGenEposEventHeader::AliGenEposEventHeader() :     fBimevt(0),
     fZppevt(0),
     fZptevt(0)
 {
-
+// Default constructor
 }
 
-
-Float_t AliGenEposEventHeader::GetBimevt() { return fBimevt; }
-Float_t AliGenEposEventHeader::GetPhievt() { return fPhievt; }
-Int_t AliGenEposEventHeader::GetKolevt()   { return fKolevt; }
-Int_t AliGenEposEventHeader::GetKoievt()   { return fKoievt; }
-Float_t AliGenEposEventHeader::GetPmxevt() { return fPmxevt; }
-Float_t AliGenEposEventHeader::GetEgyevt() { return fEgyevt; }
-Int_t AliGenEposEventHeader::GetNpjevt()   { return fNpjevt; }
-Int_t AliGenEposEventHeader::GetNtgevt()   { return fNtgevt; }
-Int_t AliGenEposEventHeader::GetNpnevt()   { return fNpnevt; }
-Int_t AliGenEposEventHeader::GetNppevt()   { return fNppevt; }
-Int_t AliGenEposEventHeader::GetNtnevt()   { return fNtnevt; }
-Int_t AliGenEposEventHeader::GetNtpevt()   { return fNtpevt; }
-Int_t AliGenEposEventHeader::GetJpnevt()   { return fJpnevt; }
-Int_t AliGenEposEventHeader::GetJppevt()   { return fJppevt; }
-Int_t AliGenEposEventHeader::GetJtnevt()   { return fJtnevt; }
-Int_t AliGenEposEventHeader::GetJtpevt()   { return fJtpevt; }
-Float_t AliGenEposEventHeader::GetXbjevt() { return fXbjevt; }
-Float_t AliGenEposEventHeader::GetQsqevt() { return fQsqevt; }
-Int_t AliGenEposEventHeader::GetNglevt()   { return fNglevt; }
-Float_t AliGenEposEventHeader::GetZppevt() { return fZppevt; }
-Float_t AliGenEposEventHeader::GetZptevt() { return fZptevt; }
-
-void AliGenEposEventHeader::SetBimevt(Float_t value) { fBimevt = value; }
-void AliGenEposEventHeader::SetPhievt(Float_t value) { fPhievt = value; }
-void AliGenEposEventHeader::SetKolevt(Int_t value)   { fKolevt = value; }
-void AliGenEposEventHeader::SetKoievt(Int_t value)   { fKoievt = value; }
-void AliGenEposEventHeader::SetPmxevt(Float_t value) { fPmxevt = value; }
-void AliGenEposEventHeader::SetEgyevt(Float_t value) { fEgyevt = value; }
-void AliGenEposEventHeader::SetNpjevt(Int_t value)   { fNpjevt = value; }
-void AliGenEposEventHeader::SetNtgevt(Int_t value)   { fNtgevt = value; }
-void AliGenEposEventHeader::SetNpnevt(Int_t value)   { fNpnevt = value; }
-void AliGenEposEventHeader::SetNppevt(Int_t value)   { fNppevt = value; }
-void AliGenEposEventHeader::SetNtnevt(Int_t value)   { fNtnevt = value; }
-void AliGenEposEventHeader::SetNtpevt(Int_t value)   { fNtpevt = value; }
-void AliGenEposEventHeader::SetJpnevt(Int_t value)   { fJpnevt = value; }
-void AliGenEposEventHeader::SetJppevt(Int_t value)   { fJppevt = value; }
-void AliGenEposEventHeader::SetJtnevt(Int_t value)   { fJtnevt = value; }
-void AliGenEposEventHeader::SetJtpevt(Int_t value)   { fJtpevt = value; }
-void AliGenEposEventHeader::SetXbjevt(Float_t value) { fXbjevt = value; }
-void AliGenEposEventHeader::SetQsqevt(Float_t value) { fQsqevt = value; }
-void AliGenEposEventHeader::SetNglevt(Int_t value)   { fNglevt = value; }
-void AliGenEposEventHeader::SetZppevt(Float_t value) { fZppevt = value; }
-void AliGenEposEventHeader::SetZptevt(Float_t value) { fZptevt = value; }
-