]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
warning fixed
authorpulvir <pulvir@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Oct 2008 16:37:26 +0000 (16:37 +0000)
committerpulvir <pulvir@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Oct 2008 16:37:26 +0000 (16:37 +0000)
PWG2/RESONANCES/AliRsnCut.cxx

index 951c96d71840aa102aca9404ff400082fb8f3b2c..c88ed70c0e28e7e1c22013fd7de1dc5f1cd38ef0 100644 (file)
@@ -78,8 +78,8 @@ AliRsnCut::AliRsnCut(const char *name, const char *title, EType type, Double_t m
     fIMax(fgkIBigNumber),
     fUIMin(0),
     fUIMax(2 * (UInt_t) fgkIBigNumber),
-    fULMin(min),
-    fULMax(max),
+    fULMin((ULong_t)min),
+    fULMax((ULong_t)max),
     fType(type),
     fVarType((EVarType)kDouble_t)
 {
@@ -97,8 +97,8 @@ AliRsnCut::AliRsnCut(const char * name, const char * title, EType type, Int_t mi
     fIMax(max),
     fUIMin(0),
     fUIMax(2 * (UInt_t) fgkIBigNumber),
-    fULMin(min),
-    fULMax(max),
+    fULMin((ULong_t)min),
+    fULMax((ULong_t)max),
     fType(type),
     fVarType(kInt_t)
 {