]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
fix wrong Set/Get Int_t parameters when data member is Float_t
authorgconesab <gustavo.conesa.balbastre@cern.ch>
Wed, 20 Aug 2014 11:54:50 +0000 (13:54 +0200)
committergconesab <gustavo.conesa.balbastre@cern.ch>
Wed, 20 Aug 2014 11:54:50 +0000 (13:54 +0200)
PWGGA/CaloTrackCorrelations/AliAnaEMCALTriggerClusters.h

index c40dbcf0dcdf40631e40ae0bc8d92876b25c33c1..a7e5e00c0c5662952a2562ca7aec344747b05f63 100755 (executable)
@@ -52,9 +52,9 @@ class AliAnaEMCALTriggerClusters : public AliAnaCaloTrackCorrBaseClass {
   void         SetNCellCut(Int_t n)                { fNCellsCut = n               ; }
   Double_t     GetNCellCut()                 const { return fNCellsCut            ; }
   
-  void         SetM02(Int_t min, Int_t max)        { fMinM02 = min; fMaxM02 = max ; }
-  Int_t        GetM02Min()                   const { return fMinM02               ; }
-  Int_t        GetM02Max()                   const { return fMaxM02               ; }
+  void         SetM02(Float_t min, Float_t max)    { fMinM02 = min; fMaxM02 = max ; }
+  Float_t      GetM02Min()                   const { return fMinM02               ; }
+  Float_t      GetM02Max()                   const { return fMaxM02               ; }
   
   Bool_t       IsTrackMatchRejectionOn()     const { return fRejectTrackMatch     ; }
   void         SwitchOnTrackMatchRejection()       { fRejectTrackMatch = kTRUE    ; }