]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Updates in the corrfw (Renaud)
authorpchrist <pchrist@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Sep 2010 13:05:23 +0000 (13:05 +0000)
committerpchrist <pchrist@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Sep 2010 13:05:23 +0000 (13:05 +0000)
PWG2/SPECTRA/AliProtonAnalysis.cxx

index c43c6e3848086d3092631c665dca80eab22cf916..7c30190e68757713d6f6c9995f2fe591a06899f8 100644 (file)
@@ -1683,14 +1683,14 @@ void AliProtonAnalysis::Correct(Int_t step) {
   //Applies the correction maps to the initial containers
   fCorrectProtons = new AliCFDataGrid("correctProtons",
                                      "corrected data",
-                                     *fProtonContainer);
-  fCorrectProtons->SetMeasured(0);
+                                     *fProtonContainer,0);
+  //fCorrectProtons->SetMeasured(0);
   fCorrectProtons->ApplyEffCorrection(*(AliCFEffGrid *)fEffGridListProtons->At(step));
 
   fCorrectAntiProtons = new AliCFDataGrid("correctAntiProtons",
                                          "corrected data",
-                                         *fAntiProtonContainer);
-  fCorrectAntiProtons->SetMeasured(0);
+                                         *fAntiProtonContainer,0);
+  //fCorrectAntiProtons->SetMeasured(0);
   fCorrectAntiProtons->ApplyEffCorrection(*(AliCFEffGrid *)fEffGridListAntiProtons->At(step));
 }