From bda276cfe105b7a0670fd3241af4cf1189c86b8a Mon Sep 17 00:00:00 2001 From: schutz Date: Fri, 17 Jan 2003 17:26:19 +0000 Subject: [PATCH] added a debug information --- EMCAL/AliEMCALSDigitizer.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/EMCAL/AliEMCALSDigitizer.cxx b/EMCAL/AliEMCALSDigitizer.cxx index 1639b06bc22..1c56cf8c3ef 100644 --- a/EMCAL/AliEMCALSDigitizer.cxx +++ b/EMCAL/AliEMCALSDigitizer.cxx @@ -227,10 +227,11 @@ void AliEMCALSDigitizer::Exec(Option_t *option) const AliEMCALGeometry * geom = gime->EMCALGeometry() ; - if (gDebug) + if (gDebug) { Info("Exec", "id = %d energy = %f thresholdPRE = %f thresholdEC = %f thresholdHC = %f \n", hit->GetId(), hit->GetEnergy(), fPREPrimThreshold, fECPrimThreshold, fHCPrimThreshold) ; - + Info("Exec", "where PRE/ECAL/HCAL %d, %d, %d", geom->IsInPRE(hit->GetId()), geom->IsInECAL(hit->GetId()), geom->IsInHCAL(hit->GetId()) ) ; + } if( geom->IsInPRE(hit->GetId()) ) if( hit->GetEnergy() > fPREPrimThreshold ) curSDigit = new AliEMCALDigit( hit->GetPrimary(), -- 2.31.1