]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Cosmetics
authorloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 24 Jun 2013 08:21:19 +0000 (08:21 +0000)
committerloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 24 Jun 2013 08:21:19 +0000 (08:21 +0000)
PWGJE/EMCALJetTasks/AliEmcalJetFinder.cxx
PWGJE/EMCALJetTasks/AliEmcalJetFinder.h

index eea371de3416df7044b8ef1a771aeb62cb83e744..c49e124352f31dddc69dcf8d81fde0c3764be19c 100644 (file)
@@ -4,9 +4,6 @@
 //
 // Authors: R.Haake
 
-#ifndef ALIEMCALJETFINDER_CXX
-#define ALIEMCALJETFINDER_CXX
-
 #include "AliFJWrapper.h"
 #include "AliEmcalJet.h"
 #include "AliEmcalJetFinder.h"
@@ -134,4 +131,3 @@ void AliEmcalJetFinder::FillEtaHistogram(TH1* histogram)
     histogram->Fill(fJetArray[i]->Eta());
   }
 }
-#endif
index 95dda54e57ea8fb7e2e801f64a1b34e63a1c448c..00e38cbc6cf221a15bdce85e3062e016d954525c 100644 (file)
@@ -38,19 +38,19 @@ class AliEmcalJetFinder : public TNamed
     void                          SetManualIndex(Int_t val)       {fInputVectorIndex = val;}
   private:
     // General properties
-    AliFJWrapper*                 fFastjetWrapper;
-    Int_t                         fInputVectorIndex;
-    Int_t                         fJetCount;
-    std::vector<AliEmcalJet*>     fJetArray;
+    AliFJWrapper*                 fFastjetWrapper;                // Interface object to fastjet
+    Int_t                         fInputVectorIndex;              // Current index of input vectors (by default: count of vectors)
+    Int_t                         fJetCount;                      // Found jets within the given acceptances
+    std::vector<AliEmcalJet*>     fJetArray;                      // Internal array for the jets
     // Settings for fastjet
-    Double_t                      fGhostArea;
-    Double_t                      fRadius;
-    Int_t                         fJetAlgorithm;
-    Double_t                      fTrackMaxEta;
+    Double_t                      fGhostArea;                     // setting for ghost area in FJ
+    Double_t                      fRadius;                        // Radius parameter
+    Int_t                         fJetAlgorithm;                  // var for algorithm (0=antikt, 1=kt)
+    Double_t                      fTrackMaxEta;                   // cut for |track-eta| < fTrackMaxEta
     // Jet cuts
-    Double_t                      fJetMaxEta;
-    Double_t                      fJetMinPt;
-    Double_t                      fJetMinArea;
+    Double_t                      fJetMaxEta;                     // cut for |jet-eta| < fJetMaxEta
+    Double_t                      fJetMinPt;                      // cut for  jet-pT > fJetMinPt
+    Double_t                      fJetMinArea;                    // cut for  jet-area > fJetMinArea 
 
     ClassDef(AliEmcalJetFinder, 1); // Lightweight fastjet implementation outside analysis tasks
 };