]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliJetHeader.cxx
update
[u/mrichter/AliRoot.git] / JETAN / AliJetHeader.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 0c39bef..2c6b111
@@ -12,6 +12,8 @@
  * about the suitability of this software for any purpose. It is          *
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
+
+/* $Id$ */
  
 //---------------------------------------------------------------------
 // Jet header base class 
 //---------------------------------------------------------------------
  
 #include "AliJetHeader.h"
+
 ClassImp(AliJetHeader)
  
 ////////////////////////////////////////////////////////////////////////
 
 AliJetHeader::AliJetHeader():
   TNamed("AliJetHeader", "Jet Header"),
-  fComment("No comment")
+  fComment("No comment"),
+  fJetEtaMax(0.5),
+  fJetEtaMin(-0.5),
+  fJetPhiMax(2*TMath::Pi()),
+  fJetPhiMin(0.),
+  fDebug(0),
+  fBGMode(kFALSE),
+  fRadius(0.4)
 {
-  //
-  // Constructor
-  //
+  // Default constructor
 }
  
-////////////////////////////////////////////////////////////////////////
-
+//-----------------------------------------------------------------------
 AliJetHeader::AliJetHeader(const char * name):
   TNamed(name, "Jet Header"),
-  fComment("No comment")
+  fComment("No comment"),
+  fJetEtaMax(0.5),
+  fJetEtaMin(-0.5),
+  fJetPhiMax(2*TMath::Pi()),
+  fJetPhiMin(0.),
+  fDebug(0),
+  fBGMode(kFALSE),
+  fRadius(0.4)
 {
-  //
   // Constructor
-  //
 }
 
-////////////////////////////////////////////////////////////////////////