]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliFastJetHeaderV1.h
Rename method Dump to DumpPayLoad to avoid compilation warning since mother class...
[u/mrichter/AliRoot.git] / JETAN / AliFastJetHeaderV1.h
index a8e541d0e6a925bdbd3572061f13a54f2a711681..dab382534674509d6949f9d4790baa46216f5a67 100644 (file)
@@ -41,8 +41,8 @@ class AliFastJetHeaderV1 : public AliJetHeader
   Double_t                     GetPhiMin()            const {return fPhiMin;}
   // Added temporarily !!! To be removed if not necessary
   Float_t                      GetMinCellEt()         const {return fMinCellEt;} 
-  Bool_t                       GetDebug()             const {return fDebug;}
   Bool_t                       GetBGMode()            const {return fBGMode;}
+  Double_t                     GetRparamBkg()            const {return fRparamBkg;}
 
   // Setters
   void SetRparam(Double_t f)                           {fRparam = f;}
@@ -56,12 +56,13 @@ class AliFastJetHeaderV1 : public AliJetHeader
   void SetRapRange(Double_t fmin, Double_t fmax)       {fRapMin = fmin; fRapMax = fmax;}
   void SetPhiRange(Double_t fmin, Double_t fmax)       {fPhiMin = fmin; fPhiMax = fmax;}
   void SetPtMin(Double_t ptmin)                        {fPtMin = ptmin;}
-  void SetDebug(Bool_t debug)                          {fDebug = debug;}
   void SetBGMode(Bool_t bgmode)                        {fBGMode = bgmode;}
   
   void SetComment(TString com) {fComment=com;}
   void SetComment(const char* com) {AliJetHeader::SetComment(com);}
   
+  void SetRparamBkg(Double_t f)                           {fRparamBkg = f;}
+
   // others
   void PrintParameters() const;
 
@@ -69,6 +70,7 @@ class AliFastJetHeaderV1 : public AliJetHeader
 
   //fastjet::JetDefinition parameters
   Double_t fRparam;
+  Double_t fRparamBkg;//R param for bkg calculation
   fastjet::JetAlgorithm fAlgorithm; //fastjet::kt_algorithm
   fastjet::Strategy fStrategy;  //= fastjet::Best;
   fastjet::RecombinationScheme fRecombScheme; // = fastjet::BIpt_scheme;
@@ -88,7 +90,6 @@ class AliFastJetHeaderV1 : public AliJetHeader
   //fastjet::RangeDefinition parameters 
   Double_t fRapMax, fRapMin; // rapidity range of background sub 
   Double_t fPhiMax, fPhiMin; // phi range of background sub
-  Bool_t   fDebug;           // debug option  
   Bool_t   fBGMode;          // Do we subtract BG or not?
   
   ClassDef(AliFastJetHeaderV1,2)