Ignore:
Timestamp:
Jul 25, 2013, 3:08:04 PM (11 years ago)
Author:
ldelgass
Message:

More verbosity reduction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/vtkvis/DataSet.cpp

    r3818 r3842  
    434434            return _dataSet->GetPointData()->GetScalars()->GetName();
    435435        }
     436#ifdef DEBUG
    436437        TRACE("No point scalars");
     438#endif
    437439        if (_dataSet->GetCellData() != NULL &&
    438440            _dataSet->GetCellData()->GetScalars() != NULL) {
    439441            return _dataSet->GetCellData()->GetScalars()->GetName();
    440442        }
     443#ifdef DEBUG
    441444        TRACE("No cell scalars");
     445#endif
    442446    }
    443447    return NULL;
     
    454458            return POINT_DATA;
    455459        }
     460#ifdef DEBUG
    456461        TRACE("No point scalars");
     462#endif
    457463        if (_dataSet->GetCellData() != NULL &&
    458464            _dataSet->GetCellData()->GetScalars() != NULL) {
    459465            return CELL_DATA;
    460466        }
     467#ifdef DEBUG
    461468        TRACE("No cell scalars");
     469#endif
    462470    }
    463471    return POINT_DATA;
     
    498506            return POINT_DATA;
    499507        }
     508#ifdef DEBUG
    500509        TRACE("No point vectors");
     510#endif
    501511        if (_dataSet->GetCellData() != NULL &&
    502512            _dataSet->GetCellData()->GetVectors() != NULL) {
    503513            return CELL_DATA;
    504514        }
     515#ifdef DEBUG
    505516        TRACE("No cell vectors");
     517#endif
    506518    }
    507519    return POINT_DATA;
     
    518530            return _dataSet->GetPointData()->GetVectors()->GetName();
    519531        }
     532#ifdef DEBUG
    520533        TRACE("No point vectors");
     534#endif
    521535        if (_dataSet->GetCellData() != NULL &&
    522536            _dataSet->GetCellData()->GetVectors() != NULL) {
    523537            return _dataSet->GetCellData()->GetVectors()->GetName();
    524538        }
     539#ifdef DEBUG
    525540        TRACE("No cell vectors");
     541#endif
    526542    }
    527543    return NULL;
Note: See TracChangeset for help on using the changeset viewer.