Ignore:
Timestamp:
May 5, 2009, 5:45:31 PM (15 years ago)
Author:
garnier
Message:

en test. Ok

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/interfaces/basic/src/G4VUIshell.cc

    r989 r1027  
    149149//////////////////////////////////////////////////////////////////////
    150150{
     151  printf("G4VUIshell::GetAbsCommandDirPath %s\n",apath.c_str());
    151152  if(apath.empty()) return apath;  // null string
    152153
     
    157158
    158159  // parsing...
     160  printf("G4VUIshell::GetAbsCommandDirPath bpath %s\n",bpath.c_str());
    159161  G4String absPath= "/";
     162  printf("G4VUIshell::GetAbsCommandDirPath num %d \n",G4int(bpath.length())-1);
    160163  for(G4int indx=1; indx<=G4int(bpath.length())-1; ) {
     164    printf("G4VUIshell::GetAbsCommandDirPath for %d/%d \n",indx,G4int(bpath.length())-1);
    161165    G4int jslash= bpath.index("/", indx);  // search index begin with "/"
    162166    if(jslash != G4int(G4String::npos)) {
     
    177181    indx= jslash+1;
    178182  }
     183  printf("G4VUIshell::GetAbsCommandDirPath RETURN %s\n",absPath.c_str());
    179184  return  absPath;
    180185}
Note: See TracChangeset for help on using the changeset viewer.