From 8ef08c5897648ab0d9d05481c0fe635d706bff0f Mon Sep 17 00:00:00 2001 From: "eduardo.davila@creatis.insa-lyon.fr" Date: Mon, 25 Nov 2024 16:27:54 +0100 Subject: [PATCH] Clean code --- .../vtk/src/bbvtkStructuredPointsReader.cxx | 112 +++++++++--------- 1 file changed, 53 insertions(+), 59 deletions(-) diff --git a/packages/vtk/src/bbvtkStructuredPointsReader.cxx b/packages/vtk/src/bbvtkStructuredPointsReader.cxx index 917a66e..6f7817d 100644 --- a/packages/vtk/src/bbvtkStructuredPointsReader.cxx +++ b/packages/vtk/src/bbvtkStructuredPointsReader.cxx @@ -35,86 +35,80 @@ namespace bbvtk BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,StructuredPointsReader) BBTK_BLACK_BOX_IMPLEMENTATION(StructuredPointsReader,bbtk::AtomicBlackBox); -//===== +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== +//===== void StructuredPointsReader::Process() { - -// THE MAIN PROCESSING METHOD BODY -// Here we simply set the input 'In' value to the output 'Out' -// And print out the output value -// INPUT/OUTPUT ACCESSORS ARE OF THE FORM : -// void bbSet{Input|Output}NAME(const TYPE&) -// const TYPE& bbGet{Input|Output}NAME() const -// Where : -// * NAME is the name of the input/output -// (the one provided in the attribute 'name' of the tag 'input') -// * TYPE is the C++ type of the input/output -// (the one provided in the attribute 'type' of the tag 'input') - + + // THE MAIN PROCESSING METHOD BODY + // Here we simply set the input 'In' value to the output 'Out' + // And print out the output value + // INPUT/OUTPUT ACCESSORS ARE OF THE FORM : + // void bbSet{Input|Output}NAME(const TYPE&) + // const TYPE& bbGet{Input|Output}NAME() const + // Where : + // * NAME is the name of the input/output + // (the one provided in the attribute 'name' of the tag 'input') + // * TYPE is the C++ type of the input/output + // (the one provided in the attribute 'type' of the tag 'input') + //warning: comparison with string literal results in unspecified behaviour - //if ( bbGetInputIn().c_str()!="") + //if ( bbGetInputIn().c_str()!="") std::string empty(""); // JPR if ( bbGetInputIn().c_str()!=empty) - { - spr -> SetFileName( bbGetInputIn().c_str() ); -//EED 2017-01-01 Migration VTK7 + { + spr -> SetFileName( bbGetInputIn().c_str() ); + //EED 2017-01-01 Migration VTK7 #if VTK_MAJOR_VERSION <= 5 - sp = spr->GetOutput(); - sp -> Update(); - bbSetOutputOut( sp ); + sp = spr->GetOutput(); + sp -> Update(); + bbSetOutputOut( sp ); #else - spr -> Update(); - bbSetOutputOut( spr->GetOutput() ); + spr -> Update(); + bbSetOutputOut( spr->GetOutput() ); #endif - } else { - bbSetOutputOut( NULL ); - } - + } else { + bbSetOutputOut( NULL ); + } } -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== +//===== void StructuredPointsReader::bbUserSetDefaultValues() { - -// SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX -// Here we initialize the input 'In' to 0 - bbSetInputIn(""); - bbSetOutputOut( NULL ); - + + // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX + // Here we initialize the input 'In' to 0 + bbSetInputIn(""); + bbSetOutputOut( NULL ); } -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== +//===== void StructuredPointsReader::bbUserInitializeProcessing() { - -// THE INITIALIZATION METHOD BODY : -// Here does nothing -// but this is where you should allocate the internal/output pointers -// if any - - sp = vtkImageData::New(); - spr = vtkStructuredPointsReader::New(); - - - + // THE INITIALIZATION METHOD BODY : + // Here does nothing + // but this is where you should allocate the internal/output pointers + // if any + sp = vtkImageData::New(); + spr = vtkStructuredPointsReader::New(); } -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== +//===== void StructuredPointsReader::bbUserFinalizeProcessing() { - -// THE FINALIZATION METHOD BODY : -// Here does nothing -// but this is where you should desallocate the internal/output pointers -// if any - -} + // THE FINALIZATION METHOD BODY : + // Here does nothing + // but this is where you should desallocate the internal/output pointers + // if any } -// EO namespace bbvtk + +}// EO namespace bbvtk -- 2.47.1