Changeset 909


Ignore:
Timestamp:
Jan 19, 2009, 11:18:42 AM (15 years ago)
Author:
garnier
Message:

en test

File:
1 edited

Legend:

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

    r907 r909  
    540540
    541541  // Check errors
     542  if ( ((m & fYValue) == 0))
     543#ifdef G4DEBUG
     544    printf("G4ViewParameters::SetXGeometryString YValue\n");
     545#endif
     546
     547  if ( ((m & fXValue) == 0))
     548#ifdef G4DEBUG
     549    printf("G4ViewParameters::SetXGeometryString XValue\n");
     550#endif
     551  if ( ((m & fHeightValue) == 0 ))
     552#ifdef G4DEBUG
     553    printf("G4ViewParameters::SetXGeometryString fHeightValue\n");
     554#endif
     555  if ( ((m & fWidthValue)  == 0 ))
     556#ifdef G4DEBUG
     557    printf("G4ViewParameters::SetXGeometryString fWidthValue\n");
     558#endif
     559
    542560  if ( ((m & fYValue) == 0) ||
    543561       ((m & fXValue) == 0) ||
     
    628646  strind = (char *)string;
    629647  if (*strind != '+' && *strind != '-' && *strind != 'x') {
     648#ifdef G4DEBUG
     649  printf("G4ViewParameters::ParseGeometry !+-x\n");
     650#endif
    630651    tempWidth = ReadInteger(strind, &nextCharacter);
    631652    if (strind == nextCharacter)
     
    635656  }
    636657  if (*strind == 'x' || *strind == 'X') {
     658#ifdef G4DEBUG
     659  printf("G4ViewParameters::ParseGeometry = xX\n");
     660#endif
    637661    strind++;
    638662    tempHeight = ReadInteger(strind, &nextCharacter);
     
    644668
    645669  if ((*strind == '+') || (*strind == '-')) {
     670#ifdef G4DEBUG
     671  printf("G4ViewParameters::ParseGeometry = +-\n");
     672#endif
    646673    if (*strind == '-') {
    647674      strind++;
Note: See TracChangeset for help on using the changeset viewer.