Fork me on GitHub

Changeset 480 in svn


Ignore:
Timestamp:
Jul 14, 2009, 12:53:49 PM (15 years ago)
Author:
Xavier Rouby
Message:

minor change: cleaning of the 'cout' and 'cerr'

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/DelphesRootConverter.cc

    r457 r480  
    6363        {
    6464          cerr << left  << setw(30) <<"**   ERROR: Can't find file  "<<""
    65                << left  << setw(20) << filename                      <<""
    66                << right << setw(19) <<"for input **"<<""<<endl;
     65               << left  << setw(36) << filename                      <<""
     66               << right << setw(3) <<" **"<<""<<endl;
    6767          continue;
    6868        }
  • trunk/src/HEPEVTConverter.cc

    r466 r480  
    196196          {
    197197             cerr << left  << setw(30) <<"**   ERROR: Can't find file  "<<""
    198                   << left  << setw(20) << buffer                        <<""
    199                   << right << setw(19) <<"for input **"<<""<<endl;
     198                  << left  << setw(36) << buffer                        <<""
     199                  << right << setw(3) <<" **"<<""<<endl;
    200200             continue;
    201201          }
  • trunk/src/HepMCConverter.cc

    r466 r480  
    294294        {
    295295          cerr << left  << setw(30) <<"**   ERROR: Can't find file  "<<""
    296                << left  << setw(20) << filename                      <<""
    297                << right << setw(19) <<"for input **"<<""<<endl;
     296               << left  << setw(36) << filename                      <<""
     297               << right << setw(3) <<" **"<<""<<endl;
    298298          continue;
    299299        }
  • trunk/src/LHEFConverter.cc

    r466 r480  
    194194           {
    195195              cerr << left  << setw(30) <<"**   ERROR: Can't find file  "<<""
    196                   << left  << setw(20) << filename                       <<""
    197                   << right << setw(19) <<"for input **"<<""<<endl;
     196                  << left  << setw(36) << filename                       <<""
     197                  << right << setw(3) <<" **"<<""<<endl;
    198198              continue;
    199199           }
  • trunk/src/STDHEPConverter.cc

    r466 r480  
    129129  if(!infile.is_open())
    130130    {
    131       cerr << left  << setw(30) <<"**   ERROR: Can't open  "<<""
    132                     << left  << setw(20) << inputFileList                    <<""
    133                     << right << setw(19) <<"for input **"<<""<<endl;
     131      string text = inputFileList + " for input ";
     132      cerr << left  << setw(26) <<"**   ERROR: Can't open  "<<""
     133                    << left  << setw(40) << text                    <<""
     134                    << right << setw(3) <<" **"<<""<<endl;
    134135      exit(1);
    135136    }
     
    144145      ifstream checking_the_file(filename.c_str());
    145146      if(!checking_the_file.good()) {
    146              cerr << left  << setw(30) <<"**   ERROR: Can't find file "<<""
    147                   << left  << setw(20) << filename                      <<""
    148                   << right << setw(19) <<"for input **"<<""<<endl;
     147             cerr << left  << setw(28) <<"**   ERROR: Can't find file "<<""
     148                  << left  << setw(38) << filename                      <<""
     149                  << right << setw(3) <<" **"<<""<<endl;
    149150             continue;
    150151       } else checking_the_file.close();
Note: See TracChangeset for help on using the changeset viewer.