]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG2/FORWARD/analysis2/AliFMDSharingFilter.h
Fixes
[u/mrichter/AliRoot.git] / PWG2 / FORWARD / analysis2 / AliFMDSharingFilter.h
index 7dbcf5edf2217966de80f19997caba8f0487b74f..01e26006bdd589d2a9f56d76f32825f0cabc6eb9 100644 (file)
@@ -95,17 +95,6 @@ public:
    * 
    */
   void Init();
-  /** 
-   * Set the low cut used for sharing 
-   * 
-   * @param lowCut Low cut
-   */
-  void SetLowCut(Double_t lowCut=0) { fLCuts.SetMultCuts(lowCut); }
-  /** 
-   * Reset the low cut for sharing to use the fit range lower cut 
-   * 
-   */
-  void UnsetLowCut() { fLCuts.SetMultCuts(0); }
   /** 
    * Set the debug level.  The higher the value the more output 
    * 
@@ -143,20 +132,6 @@ public:
    * 
    */
   void SetAllow3Strips(Bool_t use) { fThreeStripSharing = use; }
-  /** 
-   * Set the number of landau width to subtract from the most probably
-   * value to get the high cut for the merging algorithm.
-   * 
-   * @param n Number of @f$ \xi@f$ 
-   */
-  void SetNXi(Double_t n) { fHCuts.SetNXi(n); /* fNXi = n; */ }
-  /** 
-   * Whether to include sigma in the number subtracted from the MPV to
-   * get the high cut
-   * 
-   * @param u If true, then high cut is @f$ \Delta_{mp} - n(\xi+\sigma)@f$ 
-   */
-  void SetIncludeSigma(Bool_t u) { fHCuts.SetIncludeSigma(u); /*fIncludeSigma = u;*/ }
   /** 
    * Filter the input AliESDFMD object
    * 
@@ -169,13 +144,6 @@ public:
   Bool_t Filter(const AliESDFMD& input, 
                Bool_t           lowFlux, 
                AliESDFMD&       output);
-  /** 
-   * 
-   * Set the fraction of MPV
-   * 
-   * @param cut Fraction of MPV
-   */
-  void SetFractionOfMPV(Double_t cut) { fHCuts.SetMPVFraction(cut); }
   /** 
    * Scale the histograms to the total number of events 
    * 
@@ -397,8 +365,6 @@ protected:
   TList    fRingHistos;    // List of histogram containers
   // Double_t fLowCut;        // Low cut on sharing
   Bool_t   fCorrectAngles; // Whether to work on angle corrected signals
-  Double_t fNXi;           // Number of xi's from Delta to stop merging
-  Bool_t   fIncludeSigma;  // Whether to include sigma in cut 
   TH2*     fSummed;        // Operations histogram 
   TH2*     fHighCuts;      // High cuts used
   TH2*     fLowCuts;       // High cuts used
@@ -409,7 +375,7 @@ protected:
   AliFMDMultCuts fHCuts;    //Cuts object for high cuts
   Bool_t   fUseSimpleMerging; //enable simple sharing by HHD
   Bool_t   fThreeStripSharing; //In case of simple sharing allow 3 strips
-  ClassDef(AliFMDSharingFilter,3); //
+  ClassDef(AliFMDSharingFilter,4); //
 };
 
 #endif