]> Creatis software - creaBruker.git/blob - appli/PrintParameterFile/PrintParameterFile.cxx
Feature #1767
[creaBruker.git] / appli / PrintParameterFile / PrintParameterFile.cxx
1 /*
2         # ---------------------------------------------------------------------
3         #
4         # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5         #                        pour la Santé)
6         # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7         # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8         # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9         #
10         #  This software is governed by the CeCILL-B license under French law and 
11         #  abiding by the rules of distribution of free software. You can  use, 
12         #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13         #  license as circulated by CEA, CNRS and INRIA at the following URL 
14         #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15         #  or in the file LICENSE.txt.
16         #
17         #  As a counterpart to the access to the source code and  rights to copy,
18         #  modify and redistribute granted by the license, users are provided only
19         #  with a limited warranty  and the software's author,  the holder of the
20         #  economic rights,  and the successive licensors  have only  limited
21         #  liability. 
22         #
23         #  The fact that you are presently reading this means that you have had
24         #  knowledge of the CeCILL-B license and that you accept its terms.
25         # ------------------------------------------------------------------------
26 */
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include "brukerdataset.h"
34 //#include "brukerkspaceobject.h"
35
36 #include "gdcmArgMgr.h"
37 #include "gdcmDebug.h"
38 //#include "gdcmUtil.h"
39
40
41 int main(int argc, char *argv[])
42 {   
43    START_USAGE(usage)
44    " \n PrintParameterFile : \n                                                      ",
45    " - explores the given Bruker parameter file,                   ",
46    " - prints its content,                      ",
47    " usage: BrukerToMhd filein=rukerParameterFile                               ",
48    "                   [debug] [verbose]                           ",
49    "                                                               ",
50    "  debug      : developper wants to run the program in 'debug mode'     ",
51    FINISH_USAGE
52
53 // ------------ Initialize Arguments Manager ----------------  
54    GDCM_NAME_SPACE::ArgMgr *am= new GDCM_NAME_SPACE::ArgMgr(argc, argv);
55   
56    if (argc == 1 || am->ArgMgrDefined("usage") )
57    {
58       am->ArgMgrUsage(usage); // Display 'usage'
59       delete am;
60       return 1;
61    }
62    
63    const char *fileNamein;   
64    fileNamein  = am->ArgMgrWantString("filein",usage);
65    
66    if (am->ArgMgrDefined("debug"))
67       GDCM_NAME_SPACE::Debug::DebugOn();
68       
69      /* if unused Param we give up */
70    if ( am->ArgMgrPrintUnusedLabels() )
71    {
72       am->ArgMgrUsage(usage);
73       delete am;
74       return 1;
75    } 
76
77    delete am;  // we don't need Argument Manager any longer
78
79    // ----------- End Arguments Manager ---------
80        
81   BrukerDataSet br1;
82   //BrukerKspaceObject bro1(br1);
83   std::string file2Read(fileNamein);
84   br1.LoadFile(file2Read);
85 std::cout << "=============== FillMap =================" << std::endl;
86   br1.FillMap();
87 std::cout << "=============== End FillMap =================" << std::endl;
88
89   std::cout << "=============== PrintSelf =================" << std::endl;
90   br1.PrintSelf();
91   std::cout << "=============== End PrintSelf =============" << std::endl;
92
93   return EXIT_SUCCESS;
94 }