From: marian Date: Mon, 22 Jan 2007 16:19:12 +0000 (+0000) Subject: Cut on minimal amplitude to dump X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=9e97e52de12f5ee493f484dd6aabc816071797b8;p=u%2Fmrichter%2FAliRoot.git Cut on minimal amplitude to dump --- diff --git a/TPC/AliTPCclustererMI.cxx b/TPC/AliTPCclustererMI.cxx index b132ab18ba7..5fa8076c484 100644 --- a/TPC/AliTPCclustererMI.cxx +++ b/TPC/AliTPCclustererMI.cxx @@ -572,7 +572,7 @@ void AliTPCclustererMI::AddCluster(AliTPCclusterMI &c, Float_t * matrix, Int_t p if (matrix) { Int_t nbins=0; Float_t *graph =0; - if (fRecoParam->GetCalcPedestal()){ + if (fRecoParam->GetCalcPedestal() && cl->GetMax()>fRecoParam->GetDumpAmplitudeMin()){ nbins = fMaxTime; graph = &(fBins[fMaxTime*(pos/fMaxTime)]); }