From 444ef97c8ec1cd83ff3ece1b5083e429918ef3ba Mon Sep 17 00:00:00 2001 From: cblume Date: Mon, 20 Dec 2010 09:32:03 +0000 Subject: [PATCH] Fix compiler warning (Julian) --- TRD/AliTRDPreprocessorOffline.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TRD/AliTRDPreprocessorOffline.cxx b/TRD/AliTRDPreprocessorOffline.cxx index d59e3c7fa9a..140e9e85ffb 100644 --- a/TRD/AliTRDPreprocessorOffline.cxx +++ b/TRD/AliTRDPreprocessorOffline.cxx @@ -880,7 +880,7 @@ AliTRDCalChamberStatus *AliTRDPreprocessorOffline::ProduceChamberStatus() TH1I *projch = (TH1I *) fCH2d->ProjectionX("projch",idet+1,idet+1,(Option_t *)"e"); if (!projch) continue; - Int_t entries = projch->GetEntries(); + Int_t entries = static_cast(projch->GetEntries()); // gain Double_t defaultgain = calDetGain->GetMean(); -- 2.43.0