diff --git a/Fireworks/Geometry/plugins/TGeoMgrFromDdd.cc b/Fireworks/Geometry/plugins/TGeoMgrFromDdd.cc index 7108add425b4f..28a50775ceb48 100644 --- a/Fireworks/Geometry/plugins/TGeoMgrFromDdd.cc +++ b/Fireworks/Geometry/plugins/TGeoMgrFromDdd.cc @@ -138,8 +138,8 @@ TGeoMgrFromDdd::ReturnType TGeoMgrFromDdd::produce(const DisplayGeomRecord& iRec gGeoIdentity = new TGeoIdentity("Identity"); } - std::cout << "about to initialize the DDCompactView walker" - << " with a root node " << viewH->root() << std::endl; + edm::LogVerbatim("TGeoMgrFromDdd") << "about to initialize the DDCompactView walker with a root node " + << viewH->root() << std::endl; auto walker = viewH->walker(); auto info = walker.current(); @@ -170,10 +170,10 @@ TGeoMgrFromDdd::ReturnType TGeoMgrFromDdd::produce(const DisplayGeomRecord& iRec auto info = walker.current(); if (m_verbose) { - std::cout << "parentStack of size " << parentStack.size() << std::endl; + edm::LogVerbatim("TGeoMgrFromDdd") << "parentStack of size " << parentStack.size(); auto num = (info.second != nullptr) ? info.second->copyno() : 0; - std::cout << info.first.name() << " " << num << " " << DDSolidShapesName::name(info.first.solid().shape()) - << std::endl; + edm::LogVerbatim("TGeoMgrFromDdd") << info.first.name() << " " << num << " " + << DDSolidShapesName::name(info.first.solid().shape()); } std::string name = m_fullname ? info.first.name().fullname() : info.first.name().name(); @@ -614,7 +614,7 @@ TGeoVolume* TGeoMgrFromDdd::createVolume(const std::string& iName, const DDSolid TGeoMaterial* TGeoMgrFromDdd::createMaterial(const DDMaterial& iMaterial) { std::string mat_name = m_fullname ? iMaterial.name().fullname() : iMaterial.name().name(); - edm::LogVerbatim("TGeoMgrFromDdd") << "createMateriale with name: " << mat_name; + edm::LogVerbatim("TGeoMgrFromDdd") << "createMaterial with name: " << mat_name; TGeoMaterial* mat = nameToMaterial_[mat_name]; if (mat == nullptr) {