]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ANALYSIS/AliAnalysisManager.cxx
Updated computation of truncated mean of dE/dx from ITS layers (F. Prino)
[u/mrichter/AliRoot.git] / ANALYSIS / AliAnalysisManager.cxx
index e34b957b518ff992371ddeb17c27a68779abdcc5..5cd9de3777ee85cb212021708e036318355487ac 100644 (file)
@@ -2268,7 +2268,7 @@ void AliAnalysisManager::ProgressBar(const char *opname, Long64_t current, Long6
      Int_t full   = Int_t(ocurrent > 0 ? 
                          time * (float(osize)/ocurrent) + .5 : 
                          99*3600+59*60+59); 
-     Int_t remain = full - time;
+     Int_t remain = Int_t(full - time);
      Int_t rsec   = remain % 60;
      Int_t rmin   = (remain / 60) % 60;
      Int_t rhour  = (remain / 60 / 60);
@@ -2359,7 +2359,7 @@ void AliAnalysisManager::AddStatisticsMsg(const char *line)
 }
 
 //______________________________________________________________________________
-void AliAnalysisManager::WriteStatisticsMsg(Int_t nevents)
+void AliAnalysisManager::WriteStatisticsMsg(Int_t)
 {
 // If fStatistics is present, write the file in the format ninput_nprocessed_nfailed_naccepted.stat
    static Bool_t done = kFALSE;