]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliUA1JetHeaderV1.cxx
Coeverity fixes, changed hard-coded track eta of 0.9 for the cluster task, do not...
[u/mrichter/AliRoot.git] / JETAN / AliUA1JetHeaderV1.cxx
index cd25614f2d5bd211c2e9d4d1f13b278273e7311b..73b1f156826a9ccf60d88384481ffddcc90a6998 100644 (file)
@@ -13,6 +13,8 @@
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
  
+/* $Id$ */
+
 //---------------------------------------------------------------------
 //  Jet Gen header class
 // Stores parameters of particle algoritm
 //---------------------------------------------------------------------
 
 #include <Riostream.h> 
+#include <TMath.h>
+
 #include "AliUA1JetHeaderV1.h"
 ClassImp(AliUA1JetHeaderV1)
 
 ////////////////////////////////////////////////////////////////////////
 
 AliUA1JetHeaderV1::AliUA1JetHeaderV1():
-  AliJetHeader("AliUA1JetHeaderV1")
+
+    AliJetHeader("AliUA1JetHeaderV1"),
+    fConeRadius(0.3),
+    fEtSeed(3.0),
+    fMinJetEt(10.),
+    fMinCellEt(0.0), // Temporarily added -> To be removed if not necessary
+    fMinMove(0.05),
+    fMaxMove(0.15),
+    fBackgMode(1),
+    fPrecBg(0.035),
+    fBackgStat(0.0), 
+    fBackgCutRatio(1.0),
+    fNAcceptJets(3),
+    fLegoNbinEta(36),
+    fLegoNbinPhi(124),
+    fLegoEtaMin(-0.9),
+    fLegoEtaMax(0.9),
+    fLegoPhiMin(0.),
+    fLegoPhiMax(2.*TMath::Pi())
 {
   // Constructor
-  fConeRadius    =  0.3;
-  fEtSeed        =  3.0;
-  fMinJetEt      = 10.0;
-  fMinMove       =  0.05;
-  fMaxMove       =  0.15;
-  fBackgMode     =  1;   // subtract backg
-  fPrecBg        =  0.035; //background prec
-  fBackgStat     =  0.0;  // pre-calculated background used in statistic subtraction method
-  fBackgCutRatio = 1.0;   // pre-calculated pt-cut ratio used in ratio subtraction method
-  fNAcceptJets   = 3;   // number of accepted jets per events
-  fLegoNbinEta   =  36;
-  fLegoNbinPhi   = 124;
-  fLegoPhiMin    =   0.;
-  fLegoPhiMax    = 2. * TMath::Pi();
-  fLegoEtaMin    = -0.9;
-  fLegoEtaMax    =  0.9;
 }
 
 ////////////////////////////////////////////////////////////////////////