From: jean-pierre roux Date: Mon, 11 Jan 2010 18:00:14 +0000 (+0000) Subject: Remove deprecated X-Git-Tag: CREATOOLS.2-0-3~29 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=creaBruker.git;a=commitdiff_plain;h=4856246a95f348a8d1c19546a44cf62ada82e502 Remove deprecated --- diff --git a/appli/CMakeLists.txt b/appli/CMakeLists.txt index 5c68369..f7deab7 100644 --- a/appli/CMakeLists.txt +++ b/appli/CMakeLists.txt @@ -10,8 +10,7 @@ SUBDIRS( # ==> Depending on the use or not of Wx, # ==> You will dupplicate WithWx or WithoutWx # - #essaiDenis - #SimpleBrukerToMhdDcm + #essaiDenis PrintParameterFile #exObjectVaryingProperties testBruker2Dicom diff --git a/appli/testBruker2Dicom/testBruker2Dicom.cxx b/appli/testBruker2Dicom/testBruker2Dicom.cxx index b815410..b8d78ea 100644 --- a/appli/testBruker2Dicom/testBruker2Dicom.cxx +++ b/appli/testBruker2Dicom/testBruker2Dicom.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: testBruker2Dicom.cxx,v $ Language: C++ - Date: $Date: 2009/12/14 14:08:08 $ - Version: $Revision: 1.6 $ + Date: $Date: 2010/01/11 18:00:17 $ + Version: $Revision: 1.7 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -35,7 +35,7 @@ // =================================================================================================== /** - * \brief + * \brief * - explores the given root directory e.g. : * B67d1.Bp1 * subject @@ -63,7 +63,7 @@ * isa <-- * meta * procs - * roi ... + * roi ... * roi * 3 // post processed images (if any) * 2dseq @@ -72,24 +72,24 @@ * meta * procs * roi - * ... + * ... * 2 * acqp * fid * ... * pdata - * 3 + * 3 * ... * - fills a single level Directory with the MHD files, - */ - + */ + int main(int argc, char *argv[]) { START_USAGE(usage) " \n testBruker2Dicom : \n ", " - explores the given directory (holding a FULL Bruker exam), at the 3 levels,", - " - fills an equivalent Directory with the MHD files or the DICOM files ", + " - fills an equivalent Directory with the MHD files and/or the DICOM files", " usage: testBruker2Dicom dirin=rootDirectoryName ", " dirout=outputDirectoryName ", " [D] [M] ", @@ -143,7 +143,7 @@ int main(int argc, char *argv[]) b2d.SetConvertModeToDicom(); if (mhd) b2d.SetConvertModeToMhd(); - + /* if unused Param we give up */ if ( am->ArgMgrPrintUnusedLabels() ) { @@ -157,8 +157,8 @@ int main(int argc, char *argv[]) // b2d.day : unused ... b2d.day = am->ArgMgrGetString("day", "You_forget_the_Day"); - - delete am; // we don't need Argument Manager any longer + + delete am; // we don't need Argument Manager any longer // ----------- End Arguments Manager --------- @@ -169,7 +169,7 @@ int main(int argc, char *argv[]) b2d.SetOutputDirectory(dirNameout); /// \TODO : *do* use exceptions in the methods! - + try { b2d.Execute(); } @@ -190,6 +190,6 @@ int main(int argc, char *argv[]) } -} +}