]> Creatis software - bbtk.git/commitdiff
Clean code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 25 Nov 2024 15:27:54 +0000 (16:27 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 25 Nov 2024 15:27:54 +0000 (16:27 +0100)
packages/vtk/src/bbvtkStructuredPointsReader.cxx

index 917a66effc0896ca8f942a5f3b1f5a33c9f537b8..6f7817d74fa6d205347144cff727705f263fbd39 100644 (file)
@@ -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