]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliJet.cxx
Updated geometry including for the first time ACORDE
[u/mrichter/AliRoot.git] / JETAN / AliJet.cxx
index 450f5a074d5889a58e4ad1191d6b36c6a4d6d917..d6940978b03fda17920a9828709a185a9b3fe04f 100644 (file)
@@ -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 class 
 
 #include "AliJet.h"
 ClassImp(AliJet)
-
-
-AliJet::AliJet() 
+  
+AliJet::AliJet():
+  fNInput(0),
+  fNJets(0),
+  fEtAvg(0),
+  fInJet(0),
+  fMultiplicities(0),
+  fNCells(0),
+  fPtFromSignal(0),
+  fJets(0),
+  fEtaIn(0),
+  fPhiIn(0),
+  fPtIn(0)
 {
-  // Constructor
+  // Default constructor
   fJets = new TClonesArray("TLorentzVector",1000);
-  fNInput=0;
-  fNJets=0;
-  fEtAvg = 0;
-  fInJet=TArrayI();
-  fPtIn=TArrayF();
-  fEtaIn=TArrayF();
-  fPhiIn=TArrayF();
-  fPtFromSignal=TArrayF();
-  fMultiplicities=TArrayI();
-  fNCells=TArrayI();
+  fInJet = TArrayI();
+  fPtIn = TArrayF();
+  fEtaIn = TArrayF();
+  fPhiIn = TArrayF();
+  fPtFromSignal = TArrayF();
+  fMultiplicities = TArrayI();
+  fNCells = TArrayI();
 } 
 
 ////////////////////////////////////////////////////////////////////////
@@ -212,7 +221,6 @@ void AliJet::SetInJet(Int_t* j)
   // a jet, if n,positive, it was assiged to jet n
   // if n, negative, it is within cone of jet n, but
   // it did not passed the user cuts. filled in by AliJetFinder
-
   if (fNInput>0) fInJet.Set(fNInput, j);
 }