diff --git a/src/TRestDetectorElectronDiffusionProcess.cxx b/src/TRestDetectorElectronDiffusionProcess.cxx index 4f3cf999..0da4f16b 100644 --- a/src/TRestDetectorElectronDiffusionProcess.cxx +++ b/src/TRestDetectorElectronDiffusionProcess.cxx @@ -201,10 +201,8 @@ TRestEvent* TRestDetectorElectronDiffusionProcess::ProcessEvent(TRestEvent* inpu Double_t fanoFactor = fFano; if (fPoissonElectronExcitation) { if (fUseFanoFactor) { - RESTInfo << "using fano factor " << fanoFactor << RESTendl; numberOfElectrons = fRandom->Poisson(energy * fanoFactor * REST_Units::eV / fWValue); } else { - RESTInfo << "not using fano factor " << RESTendl; numberOfElectrons = fRandom->Poisson(energy * REST_Units::eV / fWValue); } } else {