]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Delete useless cout
authorClarisse Genrault <cgenrault@is231796.intra.cea.fr>
Mon, 7 Sep 2020 14:42:37 +0000 (16:42 +0200)
committerClarisse Genrault <cgenrault@is231796.intra.cea.fr>
Mon, 7 Sep 2020 14:42:37 +0000 (16:42 +0200)
src/GeomAlgoAPI/GeomAlgoAPI_ROOTExport.cpp

index df0106062757f1b0861fdb29fb5543e5a24df68d..31fc748eba47d08b93dd8f63e1756579cd800372 100644 (file)
@@ -50,7 +50,6 @@ void GeomAlgoAPI_ROOTExport::buildBox(const std::string& theObjectName,
                                       const double theOX, const double theOY, const double theOZ,
                                       const double theDX, const double theDY, const double theDZ)
 {
-  std::cout<<"buildBox"<<std::endl;
   myContent += "Double_t point_"+theObjectName+"[3] = {"+doubleToString(theOX)+",";
   myContent += doubleToString(theOY)+","+doubleToString(theOZ)+"};\n";
   myContent += "TGeoBBox* " + theObjectName + "= new TGeoBBox(\"" +theObjectName + "\",";
@@ -100,7 +99,6 @@ void GeomAlgoAPI_ROOTExport::buildEnd()
 bool GeomAlgoAPI_ROOTExport::write()
 {
   std::ofstream aFile;
-  std::cout<<myFileName.c_str()<<std::endl;
   OSD_OpenStream(aFile, myFileName.c_str(), std::ofstream::out);
   if (!aFile.is_open())
     return false;