1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/*
* Methods of class Dim_tbl
*
* (see file dim_tbl.h for documentation)
*
*/
/*
* Copyright (c) 1999-2000 Jean-Alain Marck
* Copyright (c) 1999-2001 Eric Gourgoulhon
*
* This file is part of LORENE.
*
* LORENE is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* LORENE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LORENE; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
char dim_tbl[] = "$Header: /cvsroot/Lorene/C++/Source/Tbl/dim_tbl.C,v 1.7 2014/10/13 08:53:41 j_novak Exp $" ;
/*
* $Id: dim_tbl.C,v 1.7 2014/10/13 08:53:41 j_novak Exp $
* $Log: dim_tbl.C,v $
* Revision 1.7 2014/10/13 08:53:41 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.6 2014/10/06 15:13:18 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.5 2006/09/26 07:21:07 p_grandclement
* Minor change in the indices
*
* Revision 1.4 2006/09/25 10:01:50 p_grandclement
* Addition of N-dimensional Tbl
*
* Revision 1.3 2002/10/16 14:37:13 j_novak
* Reorganization of #include instructions of standard C++, in order to
* use experimental version 3 of gcc.
*
* Revision 1.2 2001/12/04 21:27:54 e_gourgoulhon
*
* All writing/reading to a binary file are now performed according to
* the big endian convention, whatever the system is big endian or
* small endian, thanks to the functions fwrite_be and fread_be
*
* Revision 1.1 2001/11/23 09:37:51 e_gourgoulhon
* dim_tbl.C now in directory Tbl
*
* Revision 1.1.1.1 2001/11/20 15:19:30 e_gourgoulhon
* LORENE
*
* Revision 2.5 1999/11/23 12:16:49 eric
* Dimension 0 autorisee dans le constructeur 1D.
*
* Revision 2.4 1999/09/24 14:24:09 eric
* Declaration de methodes const.
*
* Revision 2.3 1999/09/22 11:24:53 eric
* Correction erreur ecriture/lecture fichier de taille (double->int).
* Initialisation de ndim.
*
* Revision 2.2 1999/09/16 16:24:08 eric
* *** empty log message ***
*
* Revision 2.1 1999/03/01 14:56:17 eric
* *** empty log message ***
*
* Revision 2.0 1999/02/15 10:42:45 hyc
* *** empty log message ***
*
* $Header: /cvsroot/Lorene/C++/Source/Tbl/dim_tbl.C,v 1.7 2014/10/13 08:53:41 j_novak Exp $
*
*/
// Headers C
#include <cassert>
// Headers Lorene
#include "dim_tbl.h"
#include "utilitaires.h"
//---------------//
// Constructeurs //
//---------------//
// 1D constructor
namespace Lorene {
Dim_tbl::Dim_tbl(int i) : ndim(1) {
assert(i >= 0) ; // The dimension 0 is allowed
dim = new int[ndim] ;
dim[0] = i ;
taille = i ;
}
// 2D constructor
Dim_tbl::Dim_tbl(int j, int i) : ndim(2) {
assert(j > 0) ;
assert(i > 0) ;
dim = new int[ndim] ;
dim[0] = i ; dim[1] = j ;
taille = i * j ;
}
// 3D constructor
Dim_tbl::Dim_tbl(int k, int j, int i) : ndim(3) {
assert(k > 0) ;
assert(j > 0) ;
assert(i > 0) ;
dim = new int[ndim] ;
dim[0] = i ; dim[1] = j ; dim[2] = k ;
taille = i * j * k ;
}
// N-dimensional constructor
Dim_tbl::Dim_tbl(int n, int* sizes) : ndim(n) {
for (int i=0 ; i<ndim ; i++)
assert(sizes[i] > 0) ;
dim = new int[ndim] ;
taille = 1 ;
for (int i=0 ; i<ndim ; i++) {
dim[i] = sizes[ndim-i-1] ;
taille *= sizes[i] ;
}
}
// Copy
Dim_tbl::Dim_tbl(const Dim_tbl & titi) : ndim(titi.ndim) {
dim = new int[ndim] ;
for (int i=0 ; i<ndim ; i++) {
dim[i] = titi.dim[i] ;
}
taille = titi.taille ;
}
// From a file
Dim_tbl::Dim_tbl(FILE* fd) {
fread_be(&ndim, sizeof(int), 1, fd) ; // ndim
dim = new int[ndim] ;
fread_be(dim, sizeof(int), ndim, fd) ; // dim[]
taille = dim[0] ;
for (int i=1; i<ndim; i++) {
taille *= dim[i] ;
}
}
//--------------//
// Destructeurs //
//--------------//
// Destructeur
Dim_tbl::~Dim_tbl() {
delete [] dim ;
}
//-------------//
// Affectation //
//-------------//
// From Dim_tbl
void Dim_tbl::operator=(const Dim_tbl & titi) {
ndim = titi.ndim ;
delete [] dim ;
dim = new int[ndim] ;
for (int i=0 ; i<ndim ; i++) {
dim[i] = titi.dim[i] ;
}
taille = titi.taille ;
}
//------------//
// Sauvegarde //
//------------//
// Save in a file
void Dim_tbl::sauve(FILE* fd) const {
fwrite_be(&ndim, sizeof(int), 1, fd) ; // ndim
fwrite_be(dim, sizeof(int), ndim, fd) ; // dim[]
}
//------------//
// Impression //
//------------//
// Operateurs <<
ostream& operator<<(ostream& o, const Dim_tbl & titi) {
o << titi.ndim << " dimension(s):" ;
for (int i=0 ; i<titi.ndim ; i++) {
o << " " << titi.dim[i] ;
}
return o ;
}
//---------------------//
// Operateurs logiques //
//---------------------//
bool Dim_tbl::operator==(const Dim_tbl & ti) const {
// Peut-etre faux ?
if (ndim != ti.ndim) return false ;
for (int i=0 ; i<ndim ; i++) {
if (dim[i] != ti.dim[i]) return false ;
}
// Non ! juste
return true ;
}
}
|