]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Little fix related to the second round of ESD clean-up
authorbelikov <belikov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 12 Nov 2007 09:52:26 +0000 (09:52 +0000)
committerbelikov <belikov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 12 Nov 2007 09:52:26 +0000 (09:52 +0000)
STEER/AliReconstruction.cxx

index ae6226b81896d60b47122a1d76e42ba5c4b82dc5..88b82dde27067390ebda64fa39ece8671748675a 100644 (file)
@@ -1452,12 +1452,16 @@ Bool_t AliReconstruction::CleanESD(AliESDEvent *esd){
   AliInfo("Cleaning the ESD...");
   Int_t nTracks=esd->GetNumberOfTracks();
   AliInfo(Form("Number of ESD tracks before cleaning %d",nTracks));
+  Int_t nV0s=esd->GetNumberOfV0s();
+  AliInfo(Form("Number of ESD V0s before cleaning %d",nV0s));
 
-  Float_t cleanPars[]={fDmax,fZmax};
+  Float_t cleanPars[]={fV0DCAmax,fV0CsPmin,fDmax,fZmax};
   Bool_t rc=esd->Clean(cleanPars);
 
   nTracks=esd->GetNumberOfTracks();
   AliInfo(Form("Number of ESD tracks after cleaning %d",nTracks));
+  nV0s=esd->GetNumberOfV0s();
+  AliInfo(Form("Number of ESD V0s after cleaning %d",nV0s));
 
   return rc;
 }