aimsdata  5.0.5
Neuroimaging data handling
texheader.h
Go to the documentation of this file.
1 /* This software and supporting documentation are distributed by
2  * Institut Federatif de Recherche 49
3  * CEA/NeuroSpin, Batiment 145,
4  * 91191 Gif-sur-Yvette cedex
5  * France
6  *
7  * This software is governed by the CeCILL-B license under
8  * French law and abiding by the rules of distribution of free software.
9  * You can use, modify and/or redistribute the software under the
10  * terms of the CeCILL-B license as circulated by CEA, CNRS
11  * and INRIA at the following URL "http://www.cecill.info".
12  *
13  * As a counterpart to the access to the source code and rights to copy,
14  * modify and redistribute granted by the license, users are provided only
15  * with a limited warranty and the software's author, the holder of the
16  * economic rights, and the successive licensors have only limited
17  * liability.
18  *
19  * In this respect, the user's attention is drawn to the risks associated
20  * with loading, using, modifying and/or developing or reproducing the
21  * software by the user in light of its specific status of free software,
22  * that may mean that it is complicated to manipulate, and that also
23  * therefore means that it is reserved for developers and experienced
24  * professionals having in-depth computer knowledge. Users are therefore
25  * encouraged to load and test the software's suitability as regards their
26  * requirements in conditions enabling the security of their systems and/or
27  * data to be ensured and, more generally, to use and operate it in the
28  * same conditions as regards security.
29  *
30  * The fact that you are presently reading this means that you have had
31  * knowledge of the CeCILL-B license and that you accept its terms.
32  */
33 
34 /*
35  * Texture header class
36  */
37 #ifndef AIMS_IO_TEXHEADER_H
38 #define AIMS_IO_TEXHEADER_H
39 
40 
42 #include <aims/def/general.h>
43 #include <aims/data/pheader.h>
44 
45 
46 namespace aims
47 {
48 
50  {
51  public:
52  TexHeader( const std::string & name, const std::string & type = "",
53  size_t size = 0, bool ascii = false );
54  virtual ~TexHeader();
55 
56  std::string name() const;
57  std::string dataType() const;
58 
59  uint byteOrder() const;
60  virtual std::string openMode() const;
61  virtual std::string filename() const;
62  virtual std::string extension() const { return std::string(".tex"); }
63  virtual std::set<std::string> extensions() const;
64  virtual bool byteSwapping() const;
65 
66  virtual void read( size_t* offset = 0 );
67  virtual void write();
68 
70  virtual int dimX () const { return 0; }
71  virtual int dimY () const { return 0; }
72  virtual int dimZ () const { return 0; }
73  virtual int dimT () const;
74  virtual float sizeX () const { return 1.0; }
75  virtual float sizeY () const { return 1.0; }
76  virtual float sizeZ () const { return 1.0; }
77  virtual float sizeT () const { return 1.0; }
78 
79  private:
80  std::string _name;
81  std::string _type;
82  size_t _size;
83  uint _byteOrder;
84  std::string _openMode;
85  };
86 
87 
88  inline
89  std::string TexHeader::dataType() const
90  {
91  return _type;
92  }
93 
94  inline
96  {
97  return _byteOrder;
98  }
99 
100  inline
101  std::string TexHeader::openMode() const
102  {
103  return _openMode;
104  }
105 
106 }
107 
108 
109 #endif
virtual int dimZ() const
Definition: texheader.h:72
std::string dataType() const
Definition: texheader.h:89
virtual float sizeX() const
Definition: texheader.h:74
Attributed python-like header, stores all needed information about an object, currently used for volu...
Definition: pheader.h:51
#define AIMSDATA_API
The class for EcatSino data write operation.
Definition: border.h:44
int byteOrder()
virtual float sizeY() const
Definition: texheader.h:75
virtual int dimY() const
Definition: texheader.h:71
uint byteOrder() const
Definition: texheader.h:95
virtual float sizeT() const
Definition: texheader.h:77
virtual std::string openMode() const
Definition: texheader.h:101
virtual std::string extension() const
standard file format extension of specialized headers
Definition: texheader.h:62
virtual int dimX() const
useless compatibility functions (Header must be modified!)
Definition: texheader.h:70
virtual float sizeZ() const
Definition: texheader.h:76
unsigned int uint