]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliCdfJetHeader.cxx
delete content track array
[u/mrichter/AliRoot.git] / JETAN / AliCdfJetHeader.cxx
index c18c0838ca5d1196ffe7e80332d9815f70995a15..0f0cb324827d51e6616e33f7a05f6d4045a5c401 100644 (file)
  **************************************************************************/
 
 //---------------------------------------------------------------------
-// PxCone CDF Algorithm Jet finder header class
-// Stores parameters of CDF Jet finder
+// Jet Finder based on CDF algortihm
+// Charged jet evolution and the underlying event in proton-antiproton collisions at 1.8 TeV
+// Physical Review D, vol. 65, Issue 9, id. 092002
+// http://www.phys.ufl.edu/~rfield/cdf/chgjet/chgjet_intro.html
+// Authors : Adrian.Sevcenco@cern.ch (adriansev@spacescience.ro )
+//           Daniel.Felea@cern.ch    (dfelea@spacescience.ro)
+//           Ciprian.Mihai.Mitu@cern.ch  (mcm@spacescience.ro)
 //---------------------------------------------------------------------
 
+
+/*
+  Changelog
+
+
+
+*/
+
 #include "AliCdfJetHeader.h"
+
 ClassImp ( AliCdfJetHeader )
 
 ////////////////////////////////////////////////////////////////////////
 
-AliCdfJetHeader::AliCdfJetHeader() :
-    fRadius (0.7),
-    fPtMin  (0.),
-    fPtMax (0.),
-    fEtaMin (0.),
-    fEtaMax (0.),
-    fPhiMin (0.),
-    fPhiMax (0.)
-  {
+AliCdfJetHeader::AliCdfJetHeader():
+  fMinPartJet(1),
+  fJetPtCut(0.),
+  fAODwrite(kFALSE),
+  fAODtracksWrite(kFALSE),
+  fkAnalyseJets(kFALSE)
+{
   // Constructor
-  }
-
-////////////////////////////////////////////////////////////////////////
-
-// void AliCdfJetHeader::PrintParameters() const
-//   {
-//   // prints out parameters of jet algorithm
-//
-//   cout << " CDF simplified jet algorithm " << endl;
-//   cout << " * Jet parameters: " << endl;
-//   cout << " Cone size: " << fRadius << endl;
-//
-//
-//   }
+}