Ignore:
Timestamp:
Jan 20, 2009, 12:12:15 PM (15 years ago)
Author:
garnier
Message:

change debug definition, and tag for files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/management/src/G4ViewParameters.cc

    r910 r911  
    2525//
    2626//
    27 // $Id: G4ViewParameters.cc,v 1.33 2009/01/19 15:47:49 lgarnier Exp $
     27// $Id: G4ViewParameters.cc,v 1.34 2009/01/19 16:26:40 lgarnier Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    599599
    600600G4int G4ViewParameters::GetWindowAbsoluteLocationHintX (G4int sizeX ) const {
    601 #ifdef G4DEBUG
    602   printf("G4ViewParameters::GetWindowLocationHintX () :: %d\n",fWindowLocationHintX);
    603 #endif
    604601  if ( fWindowLocationHintXNegative ) {
    605602    return  sizeX  + fWindowLocationHintX - fWindowSizeHintX;
     
    609606
    610607G4int G4ViewParameters::GetWindowAbsoluteLocationHintY (G4int sizeY ) const {
    611 #ifdef G4DEBUG
    612   printf("G4ViewParameters::GetWindowLocationHintY () :: %d\n",fWindowLocationHintY);
    613 #endif
    614608  if (  fWindowLocationHintYNegative ) {
    615609    return  sizeY  + fWindowLocationHintY - fWindowSizeHintY;
     
    654648  strind = (char *)string;
    655649  if (*strind != '+' && *strind != '-' && *strind != 'x') {
    656 #ifdef G4DEBUG
    657   printf("G4ViewParameters::ParseGeometry !+-x\n");
    658 #endif
    659650    tempWidth = ReadInteger(strind, &nextCharacter);
    660651    if (strind == nextCharacter)
     
    664655  }
    665656  if (*strind == 'x' || *strind == 'X') {
    666 #ifdef G4DEBUG
    667   printf("G4ViewParameters::ParseGeometry = xX\n");
    668 #endif
    669657    strind++;
    670658    tempHeight = ReadInteger(strind, &nextCharacter);
     
    676664
    677665  if ((*strind == '+') || (*strind == '-')) {
    678 #ifdef G4DEBUG
    679   printf("G4ViewParameters::ParseGeometry = +-\n");
    680 #endif
    681666    if (*strind == '-') {
    682667      strind++;
Note: See TracChangeset for help on using the changeset viewer.