diff --git a/sim/detectors/mvd/plugins/tasks/CbmMvdSensorDigitizerTask.cxx b/sim/detectors/mvd/plugins/tasks/CbmMvdSensorDigitizerTask.cxx
index e3fa340f6dc27e9be809d65a1ce1819a3121d1d9..7505e01fa5959e18290f8e5d510f757cfef8b7b1 100644
--- a/sim/detectors/mvd/plugins/tasks/CbmMvdSensorDigitizerTask.cxx
+++ b/sim/detectors/mvd/plugins/tasks/CbmMvdSensorDigitizerTask.cxx
@@ -1047,12 +1047,12 @@ void CbmMvdSensorDigitizerTask::ProducePixelCharge(CbmMvdPoint* point)
         fCurrentTotalCharge += sPoint->charge;
 
         //compute the charge distributed to this pixel by this segment
-        Float_t totCharge = (sPoint->charge * fLorentzNorm * (0.5 * fPar0 * fPar1 / TMath::Pi())
-                               / TMath::Max(1.e-10, (((Current[0] - xCentre) * (Current[0] - xCentre))
-                                                     + ((Current[1] - yCentre) * (Current[1] - yCentre)))
-                                                        / fPixelSize / fPixelSize
-                                                      + 0.25 * fPar1 * fPar1)
-                             + fPar2);
+//         Float_t totCharge = (sPoint->charge * fLorentzNorm * (0.5 * fPar0 * fPar1 / TMath::Pi())
+//                                / TMath::Max(1.e-10, (((Current[0] - xCentre) * (Current[0] - xCentre))
+//                                                      + ((Current[1] - yCentre) * (Current[1] - yCentre)))
+//                                                         / fPixelSize / fPixelSize
+//                                                       + 0.25 * fPar1 * fPar1)
+//                              + fPar2);
 
         totCharge= sPoint->charge * fLorentzNorm *
                            fSensorDataSheet-> ComputeCCE(xCentre, yCentre, 0, Current[0], Current[1],0);