]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - THijing/AliGenHijingEventHeader.cxx
Bugfix (thanks to Matevz for finding it)
[u/mrichter/AliRoot.git] / THijing / AliGenHijingEventHeader.cxx
index 45497d32bae4ccccf2f3bc2bb15606287ebb6ecd..4873513059901269b6c14d1dd2199221f6fea1ec 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.1  2000/06/15 15:47:48  morsch
-Proposal for an event header class for generated events.
-
-*/
+/* $Id$ */
 
 #include "AliGenHijingEventHeader.h"
 ClassImp(AliGenHijingEventHeader)
 
+AliGenHijingEventHeader::AliGenHijingEventHeader():
+    fTotalEnergy(0.),
+    fTrials(0),
+    fJet1(0., 0., 0., 0.),
+    fJet2(0., 0., 0., 0.),
+    fJetFsr1(0., 0., 0., 0.),
+    fJetFsr2(0., 0., 0., 0.)
+{
+    // Constructor
+}
 
+AliGenHijingEventHeader::AliGenHijingEventHeader(const char* name):
+    AliGenEventHeader(name),
+    fTotalEnergy(0.),
+    fTrials(0),
+    fJet1(0., 0., 0., 0.),
+    fJet2(0., 0., 0., 0.),
+    fJetFsr1(0., 0., 0., 0.),
+    fJetFsr2(0., 0., 0., 0.)
+{
+    // Copy Constructor
+}