X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vtk%2FvtkGdcmReader.cxx;h=e46553e72108d440bd70a930a17dff63cb9f93ce;hb=02e5b298070faff881e584dd818d85bfc05e92bf;hp=786106ea5ba13b3fd0c674f3ade01b644a764a12;hpb=4df8e3bc348eeccf8f5c23fc652b83a767e45a82;p=gdcm.git diff --git a/vtk/vtkGdcmReader.cxx b/vtk/vtkGdcmReader.cxx index 786106ea..e46553e7 100644 --- a/vtk/vtkGdcmReader.cxx +++ b/vtk/vtkGdcmReader.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: vtkGdcmReader.cxx,v $ Language: C++ - Date: $Date: 2005/07/30 18:31:25 $ - Version: $Revision: 1.74 $ + Date: $Date: 2005/08/22 12:30:36 $ + Version: $Revision: 1.76 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -122,8 +122,8 @@ #include #include -vtkCxxRevisionMacro(vtkGdcmReader, "$Revision: 1.74 $"); -vtkStandardNewMacro(vtkGdcmReader); +vtkCxxRevisionMacro(vtkGdcmReader, "$Revision: 1.76 $") +vtkStandardNewMacro(vtkGdcmReader) //----------------------------------------------------------------------------- // Constructor / Destructor @@ -131,7 +131,7 @@ vtkGdcmReader::vtkGdcmReader() { this->LookupTable = NULL; this->AllowLookupTable = 0; - this->LightChecking = false; + this->AllowLightChecking = 0; this->LoadMode = 0; // Load everything (possible values : NO_SEQ, NO_SHADOW, // NO_SHADOWSEQ) this->CoherentFileList = 0; @@ -204,10 +204,10 @@ void vtkGdcmReader::SetFileName(const char *name) * Ask for a 'light' checking -actually : just initializing- *if you are 150% sure *all* the files are coherent */ -void vtkGdcmReader::SetCheckFileCoherenceLight() -{ - LightChecking = true; -} +//void vtkGdcmReader::SetCheckFileCoherenceLight() +//{ +// LightChecking = true; +//} //----------------------------------------------------------------------------- // Protected @@ -220,7 +220,7 @@ void vtkGdcmReader::ExecuteInformation() { if ( this->CoherentFileList != 0 ) this->TotalNumberOfPlanes = this->CheckFileCoherenceAlreadyDone(); - else if ( this->LightChecking ) + else if ( this->AllowLightChecking ) this->TotalNumberOfPlanes = this->CheckFileCoherenceLight(); else this->TotalNumberOfPlanes = this->CheckFileCoherence();