From 2040404ef4cbc767cac471b73740a6b7ff86264c Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Fri, 10 May 2024 10:06:27 +0200 Subject: [PATCH] remove prints --- src/TRestDetectorElectronDiffusionProcess.cxx | 2 -- 1 file changed, 2 deletions(-) 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 {