[763] | 1 | //
|
---|
| 2 | // cmv 05/08/96
|
---|
| 3 | //
|
---|
| 4 |
|
---|
| 5 | #include "machdefs.h"
|
---|
| 6 |
|
---|
| 7 | #include <string.h>
|
---|
| 8 | #include <new.h>
|
---|
| 9 | #include <stdlib.h>
|
---|
| 10 | #include <stdio.h>
|
---|
| 11 | #ifndef __mac__
|
---|
| 12 | #include <values.h>
|
---|
| 13 | #endif
|
---|
| 14 |
|
---|
| 15 | #include "histos2.h"
|
---|
| 16 | #include "generalfit.h"
|
---|
| 17 |
|
---|
| 18 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 19 | /*!
|
---|
| 20 | Createur d'un histogramme 2D ayant nxBin,nyBin bins
|
---|
| 21 | entre xMin,xMax et yMin,yMax.
|
---|
| 22 | */
|
---|
[763] | 23 | Histo2D::Histo2D(float xMin, float xMax, int nxBin
|
---|
| 24 | ,float yMin, float yMax, int nyBin)
|
---|
| 25 | : data(new float[nxBin*nyBin]), err2(NULL)
|
---|
| 26 | , nHist(0), nEntries(0)
|
---|
| 27 | , nx(nxBin), ny(nyBin), nxy(nxBin*nyBin)
|
---|
| 28 | , xmin(xMin), xmax(xMax), ymin(yMin), ymax(yMax)
|
---|
| 29 | , wbinx((xMax - xMin)/nxBin), wbiny((yMax - yMin)/nyBin)
|
---|
| 30 | , hprojx(NULL), hprojy(NULL)
|
---|
| 31 | {
|
---|
| 32 | ASSERT(nxBin>0 && nyBin>0 && xMin<xMax && yMin<yMax);
|
---|
| 33 | for(int i=0;i<3;i++) for(int j=0;j<3;j++) over[i][j]=0.;
|
---|
| 34 | Zero();
|
---|
| 35 | b_s.H = NULL;
|
---|
| 36 | END_CONSTRUCTOR
|
---|
| 37 | }
|
---|
| 38 |
|
---|
[914] | 39 | /*!
|
---|
| 40 | Constructeur par copie.
|
---|
| 41 | */
|
---|
[763] | 42 | Histo2D::Histo2D(const Histo2D& h)
|
---|
| 43 | {
|
---|
| 44 | int i,j;
|
---|
| 45 | data = new float[h.nxy];
|
---|
| 46 | memcpy(data, h.data, h.nxy*sizeof(float));
|
---|
| 47 |
|
---|
| 48 | err2 = NULL;
|
---|
| 49 | if(h.err2) {
|
---|
| 50 | err2 = new double[h.nxy];
|
---|
| 51 | memcpy(err2, h.err2, h.nxy*sizeof(double));
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | nHist = h.nHist; nEntries = h.nEntries;
|
---|
| 55 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j]=h.over[i][j];
|
---|
| 56 | nx = h.nx; ny = h.ny; nxy = h.nxy;
|
---|
| 57 | xmin = h.xmin; xmax = h.xmax; ymin = h.ymin; ymax = h.ymax;
|
---|
| 58 | wbinx = h.wbinx; wbiny = h.wbiny;
|
---|
| 59 | b_s.H = NULL;
|
---|
| 60 |
|
---|
| 61 | hprojx = hprojy = NULL;
|
---|
| 62 | if(h.hprojx) {
|
---|
| 63 | SetProjX();
|
---|
| 64 | *hprojx = *(h.hprojx);
|
---|
| 65 | }
|
---|
| 66 | if(h.hprojy) {
|
---|
| 67 | SetProjY();
|
---|
| 68 | *hprojy = *(h.hprojy);
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | int nb;
|
---|
| 72 | float min,max;
|
---|
| 73 | nb = h.NSliX();
|
---|
| 74 | if(nb>0) {
|
---|
| 75 | SetSliX(nb);
|
---|
| 76 | for(i=0; i<NSliX();i++) *HSliX(i) = *(h.HSliX(i));
|
---|
| 77 | }
|
---|
| 78 | nb = h.NSliY();
|
---|
| 79 | if(nb>0) {
|
---|
| 80 | SetSliY(nb);
|
---|
| 81 | for(i=0; i<NSliY();i++) *HSliY(i) = *(h.HSliY(i));
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | nb = h.NBandX();
|
---|
| 85 | if(nb>0) {
|
---|
| 86 | for(i=0; i<nb;i++) {
|
---|
| 87 | h.GetBandX(i,min,max);
|
---|
| 88 | SetBandX(min,max);
|
---|
| 89 | *HBandX(i) = *(h.HBandX(i));
|
---|
| 90 | }
|
---|
| 91 | for(i=0; i<NBandX();i++) *HBandX(i) = *(h.HBandX(i));
|
---|
| 92 | }
|
---|
| 93 | nb = h.NBandY();
|
---|
| 94 | if(nb>0) {
|
---|
| 95 | for(i=0; i<nb;i++) {
|
---|
| 96 | h.GetBandY(i,min,max);
|
---|
| 97 | SetBandY(min,max);
|
---|
| 98 | *HBandY(i) = *(h.HBandY(i));
|
---|
| 99 | }
|
---|
| 100 | for(i=0; i<NBandY();i++) *HBandY(i) = *(h.HBandY(i));
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | END_CONSTRUCTOR
|
---|
| 104 | }
|
---|
| 105 |
|
---|
[914] | 106 | /*!
|
---|
| 107 | Constructeur par defaut.
|
---|
| 108 | */
|
---|
[763] | 109 | Histo2D::Histo2D()
|
---|
| 110 | : data(NULL), err2(NULL)
|
---|
| 111 | , nHist(0), nEntries(0)
|
---|
| 112 | , nx(0), ny(0), nxy(0)
|
---|
| 113 | , xmin(0), xmax(0), ymin(0), ymax(0)
|
---|
| 114 | , wbinx(0), wbiny(0)
|
---|
| 115 | , hprojx(NULL), hprojy(NULL)
|
---|
| 116 | {
|
---|
| 117 | for(int i=0;i<3;i++) for(int j=0;j<3;j++) over[i][j]=0.;
|
---|
| 118 | b_s.H = NULL;
|
---|
| 119 | END_CONSTRUCTOR
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 123 | /*!
|
---|
| 124 | Desallocation de la place de l'histogramme (fct privee).
|
---|
| 125 | */
|
---|
[763] | 126 | void Histo2D::Delete()
|
---|
| 127 | {
|
---|
| 128 | if( data != NULL ) { delete[] data; data = NULL;}
|
---|
| 129 |
|
---|
| 130 | if( err2 != NULL ) { delete[] err2; err2 = NULL;}
|
---|
| 131 |
|
---|
| 132 | DelProj();
|
---|
| 133 |
|
---|
| 134 | DelBandX();
|
---|
| 135 | DelBandY();
|
---|
| 136 |
|
---|
| 137 | DelSliX();
|
---|
| 138 | DelSliY();
|
---|
| 139 |
|
---|
| 140 | nHist = 0;
|
---|
| 141 | nEntries = 0;
|
---|
| 142 | nx = 0; ny = 0; nxy = 0;
|
---|
| 143 | xmin = 0; xmax = 0; ymin = 0; ymax = 0;
|
---|
| 144 | wbinx = 0; wbiny = 0;
|
---|
| 145 | for(int i=0;i<3;i++) for(int j=0;j<3;j++) over[i][j]=0.;
|
---|
| 146 | b_s.H = NULL;
|
---|
| 147 | }
|
---|
| 148 |
|
---|
[914] | 149 | /*!
|
---|
| 150 | Destructeur.
|
---|
| 151 | */
|
---|
[763] | 152 | Histo2D::~Histo2D()
|
---|
| 153 | {
|
---|
| 154 | Delete();
|
---|
| 155 | }
|
---|
| 156 |
|
---|
| 157 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 158 | /*!
|
---|
| 159 | Remise a zero du contenu, des erreurs et des valeurs.
|
---|
| 160 | */
|
---|
[763] | 161 | void Histo2D::Zero()
|
---|
| 162 | {
|
---|
| 163 | nHist = nEntries = 0;
|
---|
| 164 | for(int i=0;i<3;i++) for(int j=0;j<3;j++) over[i][j]=0.;
|
---|
| 165 | memset(data, 0, nxy*sizeof(float));
|
---|
| 166 | memset(over, 0, 9*sizeof(float));
|
---|
| 167 |
|
---|
| 168 | if( err2 != NULL ) memset(err2, 0, nxy*sizeof(double));
|
---|
| 169 |
|
---|
| 170 | ZeroProj();
|
---|
| 171 |
|
---|
| 172 | ZeroBandX();
|
---|
| 173 | ZeroBandY();
|
---|
| 174 |
|
---|
| 175 | ZeroSliX();
|
---|
| 176 | ZeroSliY();
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 180 | /*!
|
---|
| 181 | Pour avoir le calcul des erreurs.
|
---|
| 182 | */
|
---|
[763] | 183 | void Histo2D::Errors()
|
---|
| 184 | {
|
---|
| 185 | if( nxy > 0 ) {
|
---|
| 186 | if(err2==NULL) err2 = new double[nxy];
|
---|
| 187 | memset(err2, 0, nxy*sizeof(double));
|
---|
| 188 | }
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 192 | /*!
|
---|
| 193 | Operateur H2 = H1
|
---|
| 194 | */
|
---|
[763] | 195 | Histo2D& Histo2D::operator = (const Histo2D& h)
|
---|
| 196 | {
|
---|
| 197 | int i,j,nb;
|
---|
| 198 | float min,max;
|
---|
| 199 |
|
---|
| 200 | if(this == &h) return *this;
|
---|
| 201 | if( h.nxy > nxy ) Delete();
|
---|
| 202 | if(!data) data = new float[h.nxy];
|
---|
| 203 | if( !h.err2 && err2 ) { delete [] err2; err2=NULL;}
|
---|
| 204 | if( h.err2 && !err2 ) err2 = new double[h.nxy];
|
---|
| 205 |
|
---|
| 206 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] = h.over[i][j];
|
---|
| 207 | nHist = h.nHist;
|
---|
| 208 | nEntries = h.nEntries;
|
---|
| 209 | nx = h.nx; ny = h.ny; nxy = h.nxy;
|
---|
| 210 | xmin = h.xmin; xmax = h.xmax; wbinx = h.wbinx;
|
---|
| 211 | ymin = h.ymin; ymax = h.ymax; wbiny = h.wbiny;
|
---|
| 212 |
|
---|
| 213 | memcpy(data, h.data, nxy*sizeof(float));
|
---|
| 214 | if(err2) memcpy(err2, h.err2, nxy*sizeof(double));
|
---|
| 215 |
|
---|
| 216 | DelProjX();
|
---|
| 217 | if(h.hprojx) {
|
---|
| 218 | SetProjX();
|
---|
| 219 | *hprojx = *(h.hprojx);
|
---|
| 220 | }
|
---|
| 221 | DelProjY();
|
---|
| 222 | if(h.hprojy) {
|
---|
| 223 | SetProjY();
|
---|
| 224 | *hprojy = *(h.hprojy);
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | DelSliX();
|
---|
| 228 | nb = h.NSliX();
|
---|
| 229 | if(nb>0) {
|
---|
| 230 | SetSliX(nb);
|
---|
| 231 | for(i=0; i<NSliX();i++) *HSliX(i) = *(h.HSliX(i));
|
---|
| 232 | }
|
---|
| 233 | DelSliY();
|
---|
| 234 | nb = h.NSliY();
|
---|
| 235 | if(nb>0) {
|
---|
| 236 | SetSliY(nb);
|
---|
| 237 | for(i=0; i<NSliY();i++) *HSliY(i) = *(h.HSliY(i));
|
---|
| 238 | }
|
---|
| 239 |
|
---|
| 240 | DelBandX();
|
---|
| 241 | nb = h.NBandX();
|
---|
| 242 | if(nb>0) {
|
---|
| 243 | for(i=0; i<nb;i++) {
|
---|
| 244 | h.GetBandX(i,min,max);
|
---|
| 245 | SetBandX(min,max);
|
---|
| 246 | *HBandX(i) = *(h.HBandX(i));
|
---|
| 247 | }
|
---|
| 248 | for(i=0; i<NBandX();i++) *HBandX(i) = *(h.HBandX(i));
|
---|
| 249 | }
|
---|
| 250 | DelBandY();
|
---|
| 251 | nb = h.NBandY();
|
---|
| 252 | if(nb>0) {
|
---|
| 253 | for(i=0; i<nb;i++) {
|
---|
| 254 | h.GetBandY(i,min,max);
|
---|
| 255 | SetBandY(min,max);
|
---|
| 256 | *HBandY(i) = *(h.HBandY(i));
|
---|
| 257 | }
|
---|
| 258 | for(i=0; i<NBandY();i++) *HBandY(i) = *(h.HBandY(i));
|
---|
| 259 | }
|
---|
| 260 |
|
---|
| 261 | return *this;
|
---|
| 262 | }
|
---|
| 263 |
|
---|
| 264 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 265 | /*!
|
---|
| 266 | Operateur H *= b
|
---|
| 267 | */
|
---|
[763] | 268 | Histo2D& Histo2D::operator *= (double b)
|
---|
| 269 | {
|
---|
| 270 | int i,j;
|
---|
| 271 | double b2 = b*b;
|
---|
| 272 | for(i=0;i<nxy;i++) {
|
---|
| 273 | data[i] *= b;
|
---|
| 274 | if(err2) err2[i] *= b2;
|
---|
| 275 | }
|
---|
| 276 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] *= b;
|
---|
| 277 | nHist *= b;
|
---|
| 278 |
|
---|
| 279 | if(hprojx) *hprojx *= b;
|
---|
| 280 | if(hprojy) *hprojy *= b;
|
---|
| 281 | if(NSliX()>0) for(i=0; i<NSliX();i++) *HSliX(i) *= b;
|
---|
| 282 | if(NSliY()>0) for(i=0; i<NSliY();i++) *HSliY(i) *= b;
|
---|
| 283 | if(NBandX()>0) for(i=0; i<NBandX();i++) *HBandX(i) *= b;
|
---|
| 284 | if(NBandY()>0) for(i=0; i<NBandY();i++) *HBandY(i) *= b;
|
---|
| 285 |
|
---|
| 286 | return *this;
|
---|
| 287 | }
|
---|
| 288 |
|
---|
[914] | 289 | /*!
|
---|
| 290 | Operateur H /= b
|
---|
| 291 | */
|
---|
[763] | 292 | Histo2D& Histo2D::operator /= (double b)
|
---|
| 293 | {
|
---|
| 294 | int i,j;
|
---|
| 295 | if (b==0.) THROW(inconsistentErr);
|
---|
| 296 | double b2 = b*b;
|
---|
| 297 | for(i=0;i<nxy;i++) {
|
---|
| 298 | data[i] /= b;
|
---|
| 299 | if(err2) err2[i] /= b2;
|
---|
| 300 | }
|
---|
| 301 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] /= b;
|
---|
| 302 | nHist /= b;
|
---|
| 303 |
|
---|
| 304 | if(hprojx) *hprojx /= b;
|
---|
| 305 | if(hprojy) *hprojy /= b;
|
---|
| 306 | if(NSliX()>0) for(i=0; i<NSliX();i++) *HSliX(i) /= b;
|
---|
| 307 | if(NSliY()>0) for(i=0; i<NSliY();i++) *HSliY(i) /= b;
|
---|
| 308 | if(NBandX()>0) for(i=0; i<NBandX();i++) *HBandX(i) /= b;
|
---|
| 309 | if(NBandY()>0) for(i=0; i<NBandY();i++) *HBandY(i) /= b;
|
---|
| 310 |
|
---|
| 311 | return *this;
|
---|
| 312 | }
|
---|
| 313 |
|
---|
[914] | 314 | /*!
|
---|
| 315 | Operateur H += b
|
---|
| 316 | */
|
---|
[763] | 317 | Histo2D& Histo2D::operator += (double b)
|
---|
| 318 | {
|
---|
| 319 | int i,j;
|
---|
| 320 | float min,max;
|
---|
| 321 | for(i=0;i<nxy;i++) data[i] += b;
|
---|
| 322 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] += b;
|
---|
| 323 | nHist += nxy*b;
|
---|
| 324 |
|
---|
| 325 | if(hprojx) *hprojx += b*ny;
|
---|
| 326 | if(hprojy) *hprojy += b*nx;
|
---|
| 327 | if(NSliX()>0) for(i=0; i<NSliX();i++) *HSliX(i) += b*ny/NSliX();
|
---|
| 328 | if(NSliY()>0) for(i=0; i<NSliY();i++) *HSliY(i) += b*nx/NSliY();
|
---|
| 329 | if(NBandX()>0) for(i=0; i<NBandX();i++) {
|
---|
| 330 | GetBandX(i,min,max);
|
---|
| 331 | *HBandX(i) += b*(max-min)/(ymax-ymin)*ny;
|
---|
| 332 | }
|
---|
| 333 | if(NBandY()>0) for(i=0; i<NBandY();i++) {
|
---|
| 334 | GetBandY(i,min,max);
|
---|
| 335 | *HBandY(i) += b*(max-min)/(xmax-xmin)*nx;
|
---|
| 336 | }
|
---|
| 337 |
|
---|
| 338 | return *this;
|
---|
| 339 | }
|
---|
| 340 |
|
---|
[914] | 341 | /*!
|
---|
| 342 | Operateur H -= b
|
---|
| 343 | */
|
---|
[763] | 344 | Histo2D& Histo2D::operator -= (double b)
|
---|
| 345 | {
|
---|
| 346 | int i,j;
|
---|
| 347 | float min,max;
|
---|
| 348 | for(i=0;i<nxy;i++) data[i] -= b;
|
---|
| 349 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] -= b;
|
---|
| 350 | nHist -= nxy*b;
|
---|
| 351 |
|
---|
| 352 | if(hprojx) *hprojx -= b*ny;
|
---|
| 353 | if(hprojy) *hprojy -= b*nx;
|
---|
| 354 | if(NSliX()>0) for(i=0; i<NSliX();i++) *HSliX(i) -= b*ny/NSliX();
|
---|
| 355 | if(NSliY()>0) for(i=0; i<NSliY();i++) *HSliY(i) -= b*nx/NSliY();
|
---|
| 356 | if(NBandX()>0) for(i=0; i<NBandX();i++) {
|
---|
| 357 | GetBandX(i,min,max);
|
---|
| 358 | *HBandX(i) -= b*(max-min)/(ymax-ymin)*ny;
|
---|
| 359 | }
|
---|
| 360 | if(NBandY()>0) for(i=0; i<NBandY();i++) {
|
---|
| 361 | GetBandY(i,min,max);
|
---|
| 362 | *HBandY(i) -= b*(max-min)/(xmax-xmin)*nx;
|
---|
| 363 | }
|
---|
| 364 |
|
---|
| 365 | return *this;
|
---|
| 366 | }
|
---|
| 367 |
|
---|
| 368 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 369 | /*!
|
---|
| 370 | Operateur H2 = H1 * b
|
---|
| 371 | */
|
---|
[763] | 372 | Histo2D operator * (const Histo2D& a, double b)
|
---|
| 373 | {
|
---|
| 374 | Histo2D result(a);
|
---|
| 375 | return (result *= b);
|
---|
| 376 | }
|
---|
| 377 |
|
---|
[914] | 378 | /*!
|
---|
| 379 | Operateur H2 = b * H1
|
---|
| 380 | */
|
---|
[763] | 381 | Histo2D operator * (double b, const Histo2D& a)
|
---|
| 382 | {
|
---|
| 383 | Histo2D result(a);
|
---|
| 384 | return (result *= b);
|
---|
| 385 | }
|
---|
| 386 |
|
---|
[914] | 387 | /*!
|
---|
| 388 | Operateur H2 = H1 / b
|
---|
| 389 | */
|
---|
[763] | 390 | Histo2D operator / (const Histo2D& a, double b)
|
---|
| 391 | {
|
---|
| 392 | Histo2D result(a);
|
---|
| 393 | return (result /= b);
|
---|
| 394 | }
|
---|
| 395 |
|
---|
[914] | 396 | /*!
|
---|
| 397 | Operateur H2 = H1 + b
|
---|
| 398 | */
|
---|
[763] | 399 | Histo2D operator + (const Histo2D& a, double b)
|
---|
| 400 | {
|
---|
| 401 | Histo2D result(a);
|
---|
| 402 | return (result += b);
|
---|
| 403 | }
|
---|
| 404 |
|
---|
[914] | 405 | /*!
|
---|
| 406 | Operateur H2 = b + H1
|
---|
| 407 | */
|
---|
[763] | 408 | Histo2D operator + (double b, const Histo2D& a)
|
---|
| 409 | {
|
---|
| 410 | Histo2D result(a);
|
---|
| 411 | return (result += b);
|
---|
| 412 | }
|
---|
| 413 |
|
---|
[914] | 414 | /*!
|
---|
| 415 | Operateur H2 = H1 - b
|
---|
| 416 | */
|
---|
[763] | 417 | Histo2D operator - (const Histo2D& a, double b)
|
---|
| 418 | {
|
---|
| 419 | Histo2D result(a);
|
---|
| 420 | return (result -= b);
|
---|
| 421 | }
|
---|
| 422 |
|
---|
[914] | 423 | /*!
|
---|
| 424 | Operateur H2 = b - H1
|
---|
| 425 | */
|
---|
[763] | 426 | Histo2D operator - (double b, const Histo2D& a)
|
---|
| 427 | {
|
---|
| 428 | Histo2D result(a);
|
---|
| 429 | result *= -1.;
|
---|
| 430 | return (result += b);
|
---|
| 431 | }
|
---|
| 432 |
|
---|
| 433 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 434 | /*!
|
---|
| 435 | Operateur H += H1
|
---|
| 436 | */
|
---|
[763] | 437 | Histo2D& Histo2D::operator += (const Histo2D& a)
|
---|
| 438 | {
|
---|
| 439 | int i,j;
|
---|
| 440 | if(nx!=a.nx || ny!=a.ny) THROW(sizeMismatchErr);
|
---|
| 441 | for(i=0;i<nxy;i++) {
|
---|
| 442 | data[i] += a.data[i];
|
---|
| 443 | if(err2 && a.err2) err2[i] += a.err2[i];
|
---|
| 444 | }
|
---|
| 445 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] += a.over[i][j];
|
---|
| 446 | nHist += a.nHist;
|
---|
| 447 | nEntries += a.nEntries;
|
---|
| 448 |
|
---|
| 449 | if(hprojx && a.hprojx) *hprojx += *(a.hprojx);
|
---|
| 450 | if(hprojy && a.hprojy) *hprojy += *(a.hprojy);
|
---|
| 451 | ZeroSliX(); ZeroSliY();
|
---|
| 452 | ZeroBandX(); ZeroBandY();
|
---|
| 453 |
|
---|
| 454 | return *this;
|
---|
| 455 | }
|
---|
| 456 |
|
---|
[914] | 457 | /*!
|
---|
| 458 | Operateur H -= H1
|
---|
| 459 | */
|
---|
[763] | 460 | Histo2D& Histo2D::operator -= (const Histo2D& a)
|
---|
| 461 | {
|
---|
| 462 | int i,j;
|
---|
| 463 | if(nx!=a.nx || ny!=a.ny) THROW(sizeMismatchErr);
|
---|
| 464 | for(i=0;i<nxy;i++) {
|
---|
| 465 | data[i] -= a.data[i];
|
---|
| 466 | if(err2 && a.err2) err2[i] += a.err2[i];
|
---|
| 467 | }
|
---|
| 468 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] += a.over[i][j];
|
---|
| 469 | nHist -= a.nHist;
|
---|
| 470 | nEntries += a.nEntries;
|
---|
| 471 |
|
---|
| 472 | if(hprojx && a.hprojx) *hprojx -= *(a.hprojx);
|
---|
| 473 | if(hprojy && a.hprojy) *hprojy -= *(a.hprojy);
|
---|
| 474 | ZeroSliX(); ZeroSliY();
|
---|
| 475 | ZeroBandX(); ZeroBandY();
|
---|
| 476 |
|
---|
| 477 | return *this;
|
---|
| 478 | }
|
---|
| 479 |
|
---|
[914] | 480 | /*!
|
---|
| 481 | Operateur H *= H1
|
---|
| 482 | */
|
---|
[763] | 483 | Histo2D& Histo2D::operator *= (const Histo2D& a)
|
---|
| 484 | {
|
---|
| 485 | int i,j;
|
---|
| 486 | if(nx!=a.nx || ny!=a.ny) THROW(sizeMismatchErr);
|
---|
| 487 | nHist = 0.;
|
---|
| 488 | for(i=0;i<nxy;i++) {
|
---|
| 489 | if(err2 && a.err2)
|
---|
| 490 | err2[i] = a.data[i]*a.data[i]*err2[i] + data[i]*data[i]*a.err2[i];
|
---|
| 491 | data[i] *= a.data[i];
|
---|
| 492 | nHist += data[i];
|
---|
| 493 | }
|
---|
| 494 | for(i=0;i<3;i++) for(j=0;j<3;j++) over[i][j] *= a.over[i][j];
|
---|
| 495 | nEntries += a.nEntries;
|
---|
| 496 |
|
---|
| 497 | if(hprojx && a.hprojx) *hprojx *= *(a.hprojx);
|
---|
| 498 | if(hprojy && a.hprojy) *hprojy *= *(a.hprojy);
|
---|
| 499 | ZeroSliX(); ZeroSliY();
|
---|
| 500 | ZeroBandX(); ZeroBandY();
|
---|
| 501 |
|
---|
| 502 | return *this;
|
---|
| 503 | }
|
---|
| 504 |
|
---|
[914] | 505 | /*!
|
---|
| 506 | Operateur H /= H1
|
---|
| 507 | */
|
---|
[763] | 508 | Histo2D& Histo2D::operator /= (const Histo2D& a)
|
---|
| 509 | {
|
---|
| 510 | int i,j;
|
---|
| 511 | if(nx!=a.nx || ny!=a.ny) THROW(sizeMismatchErr);
|
---|
| 512 | nHist = 0.;
|
---|
| 513 | for(i=0;i<nxy;i++) {
|
---|
| 514 | if(a.data[i]==0.) {
|
---|
| 515 | data[i]=0.;
|
---|
| 516 | if(err2) err2[i]=0.;
|
---|
| 517 | continue;
|
---|
| 518 | }
|
---|
| 519 | if(err2 && a.err2)
|
---|
| 520 | err2[i] = (err2[i] + data[i]/a.data[i]*data[i]/a.data[i]*a.err2[i])
|
---|
| 521 | /(a.data[i]*a.data[i]);
|
---|
| 522 | data[i] /= a.data[i];
|
---|
| 523 | nHist += data[i];
|
---|
| 524 | }
|
---|
| 525 | for(i=0;i<3;i++) for(j=0;j<3;j++)
|
---|
| 526 | if(a.over[i][j]!=0.) over[i][j] *= a.over[i][j]; else over[i][j] = 0.;
|
---|
| 527 | nEntries += a.nEntries;
|
---|
| 528 |
|
---|
| 529 | if(hprojx && a.hprojx) *hprojx /= *(a.hprojx);
|
---|
| 530 | if(hprojy && a.hprojy) *hprojy /= *(a.hprojy);
|
---|
| 531 | ZeroSliX(); ZeroSliY();
|
---|
| 532 | ZeroBandX(); ZeroBandY();
|
---|
| 533 |
|
---|
| 534 | return *this;
|
---|
| 535 | }
|
---|
| 536 |
|
---|
| 537 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 538 | /*!
|
---|
| 539 | Operateur H = H1 + H2
|
---|
| 540 | */
|
---|
| 541 |
|
---|
[763] | 542 | Histo2D operator + (const Histo2D& a, const Histo2D& b)
|
---|
| 543 | {
|
---|
| 544 | if (b.NBinX()!=a.NBinX() || b.NBinY()!=a.NBinY()) THROW(sizeMismatchErr);
|
---|
| 545 | Histo2D c(a);
|
---|
| 546 | return (c += b);
|
---|
| 547 | }
|
---|
| 548 |
|
---|
[914] | 549 | /*!
|
---|
| 550 | Operateur H = H1 - H2
|
---|
| 551 | */
|
---|
[763] | 552 | Histo2D operator - (const Histo2D& a, const Histo2D& b)
|
---|
| 553 | {
|
---|
| 554 | if (b.NBinX()!=a.NBinX() || b.NBinY()!=a.NBinY()) THROW(sizeMismatchErr);
|
---|
| 555 | Histo2D c(a);
|
---|
| 556 | return (c -= b);
|
---|
| 557 | }
|
---|
| 558 |
|
---|
[914] | 559 | /*!
|
---|
| 560 | Operateur H = H1 * H2
|
---|
| 561 | */
|
---|
[763] | 562 | Histo2D operator * (const Histo2D& a, const Histo2D& b)
|
---|
| 563 | {
|
---|
| 564 | if (b.NBinX()!=a.NBinX() || b.NBinY()!=a.NBinY()) THROW(sizeMismatchErr);
|
---|
| 565 | Histo2D c(a);
|
---|
| 566 | return (c *= b);
|
---|
| 567 | }
|
---|
| 568 |
|
---|
[914] | 569 | /*!
|
---|
| 570 | Operateur H = H1 / H2
|
---|
| 571 | */
|
---|
[763] | 572 | Histo2D operator / (const Histo2D& a, const Histo2D& b)
|
---|
| 573 | {
|
---|
| 574 | if (b.NBinX()!=a.NBinX() || b.NBinY()!=a.NBinY()) THROW(sizeMismatchErr);
|
---|
| 575 | Histo2D c(a);
|
---|
| 576 | return (c /= b);
|
---|
| 577 | }
|
---|
| 578 |
|
---|
| 579 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 580 | /*!
|
---|
| 581 | Remplissage d'un tableau avec les valeurs des abscisses.
|
---|
| 582 | */
|
---|
[763] | 583 | void Histo2D::GetXCoor(Vector &v)
|
---|
| 584 | {
|
---|
| 585 | float x,y;
|
---|
| 586 | v.Realloc(nx);
|
---|
| 587 | for(int i=0;i<nx;i++) {BinLowEdge(i,0,x,y); v(i) = x;}
|
---|
| 588 | return;
|
---|
| 589 | }
|
---|
| 590 |
|
---|
[914] | 591 | /*!
|
---|
| 592 | Remplissage d'un tableau avec les valeurs des ordonnees.
|
---|
| 593 | */
|
---|
[763] | 594 | void Histo2D::GetYCoor(Vector &v)
|
---|
| 595 | {
|
---|
| 596 | float x,y;
|
---|
| 597 | v.Realloc(ny);
|
---|
| 598 | for(int i=0;i<ny;i++) {BinLowEdge(0,i,x,y); v(i) = y;}
|
---|
| 599 | return;
|
---|
| 600 | }
|
---|
| 601 |
|
---|
[914] | 602 | /*!
|
---|
| 603 | Remplissage d'un tableau avec les valeurs du contenu.
|
---|
| 604 | */
|
---|
[763] | 605 | void Histo2D::GetValue(Matrix &v)
|
---|
| 606 | {
|
---|
| 607 | v.Realloc(nx,ny);
|
---|
| 608 | for(int i=0;i<nx;i++)
|
---|
| 609 | for(int j=0;j<ny;j++) v(i,j) = (*this)(i,j);
|
---|
| 610 | return;
|
---|
| 611 | }
|
---|
| 612 |
|
---|
[914] | 613 | /*!
|
---|
| 614 | Remplissage d'un tableau avec les valeurs du carre des erreurs.
|
---|
| 615 | */
|
---|
[763] | 616 | void Histo2D::GetError2(Matrix &v)
|
---|
| 617 | {
|
---|
| 618 | int i,j;
|
---|
| 619 | v.Realloc(nx,ny);
|
---|
| 620 | if(!err2)
|
---|
| 621 | {for(i=0;i<nx;i++) for(j=0;j<ny;j++) v(i,j) = 0.; return;}
|
---|
| 622 | for(i=0;i<nx;i++) for(j=0;j<ny;j++) v(i,j) = Error2(i,j);
|
---|
| 623 | return;
|
---|
| 624 | }
|
---|
| 625 |
|
---|
[914] | 626 | /*!
|
---|
| 627 | Remplissage d'un tableau avec les valeurs des erreurs.
|
---|
| 628 | */
|
---|
[763] | 629 | void Histo2D::GetError(Matrix &v)
|
---|
| 630 | {
|
---|
| 631 | int i,j;
|
---|
| 632 | v.Realloc(nx,ny);
|
---|
| 633 | if(!err2)
|
---|
| 634 | {for(i=0;i<nx;i++) for(j=0;j<ny;j++) v(i,j) = 0.; return;}
|
---|
| 635 | for(i=0;i<nx;i++) for(j=0;j<ny;j++) v(i,j) = Error(i,j);
|
---|
| 636 | return;
|
---|
| 637 | }
|
---|
| 638 |
|
---|
| 639 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 640 | /*!
|
---|
| 641 | Remplissage du contenu de l'histo avec les valeurs d'un tableau.
|
---|
| 642 | */
|
---|
[763] | 643 | void Histo2D::PutValue(Matrix &v, int ierr)
|
---|
| 644 | {
|
---|
| 645 | int i,j;
|
---|
| 646 | if(v.NRows()!=nx || v.NCol()!=ny) THROW(sizeMismatchErr);
|
---|
| 647 | for(i=0;i<nx;i++) for(j=0;j<ny;j++) {
|
---|
| 648 | (*this)(i,j) = v(i,j);
|
---|
| 649 | if(err2 && ierr) Error2(i,j) = fabs(v(i,j));
|
---|
| 650 | }
|
---|
| 651 | return;
|
---|
| 652 | }
|
---|
| 653 |
|
---|
[914] | 654 | /*!
|
---|
| 655 | Addition du contenu de l'histo avec les valeurs d'un tableau.
|
---|
| 656 | */
|
---|
[763] | 657 | void Histo2D::PutValueAdd(Matrix &v, int ierr)
|
---|
| 658 | {
|
---|
| 659 | int i,j;
|
---|
| 660 | if(v.NRows()!=nx || v.NCol()!=ny) THROW(sizeMismatchErr);
|
---|
| 661 | for(i=0;i<nx;i++) for(j=0;j<ny;j++) {
|
---|
| 662 | (*this)(i,j) += v(i,j);
|
---|
| 663 | if(err2 && ierr) Error2(i,j) += fabs(v(i,j));
|
---|
| 664 | }
|
---|
| 665 | return;
|
---|
| 666 | }
|
---|
| 667 |
|
---|
[914] | 668 | /*!
|
---|
| 669 | Remplissage des erreurs au carre de l'histo
|
---|
| 670 | avec les valeurs d'un tableau.
|
---|
| 671 | */
|
---|
[763] | 672 | void Histo2D::PutError2(Matrix &v)
|
---|
| 673 | {
|
---|
| 674 | int i,j;
|
---|
| 675 | if(v.NRows()!=nx || v.NCol()!=ny) THROW(sizeMismatchErr);
|
---|
| 676 | if(!err2) Errors();
|
---|
| 677 | for(i=0;i<nx;i++) for(j=0;j<ny;j++) Error2(i,j) = v(i,j);
|
---|
| 678 | return;
|
---|
| 679 | }
|
---|
| 680 |
|
---|
[914] | 681 | /*!
|
---|
| 682 | Addition des erreurs au carre de l'histo
|
---|
| 683 | avec les valeurs d'un tableau.
|
---|
| 684 | */
|
---|
[763] | 685 | void Histo2D::PutError2Add(Matrix &v)
|
---|
| 686 | {
|
---|
| 687 | int i,j;
|
---|
| 688 | if(v.NRows()!=nx || v.NCol()!=ny) THROW(sizeMismatchErr);
|
---|
| 689 | if(!err2) Errors();
|
---|
| 690 | for(i=0;i<nx;i++) for(j=0;j<ny;j++)
|
---|
| 691 | if(v(i,j)>0.) Error2(i,j) += v(i,j);
|
---|
| 692 | return;
|
---|
| 693 | }
|
---|
| 694 |
|
---|
[914] | 695 | /*!
|
---|
| 696 | Remplissage des erreurs de l'histo avec les valeurs d'un tableau.
|
---|
| 697 | */
|
---|
[763] | 698 | void Histo2D::PutError(Matrix &v)
|
---|
| 699 | {
|
---|
| 700 | int i,j;
|
---|
| 701 | if(v.NRows()!=nx || v.NCol()!=ny) THROW(sizeMismatchErr);
|
---|
| 702 | if(!err2) Errors();
|
---|
| 703 | for(i=0;i<nx;i++) for(j=0;j<ny;j++)
|
---|
| 704 | if(v(i,j)>0.) Error2(i,j)=v(i,j)*v(i,j); else Error2(i,j)= -v(i,j)*v(i,j);
|
---|
| 705 | return;
|
---|
| 706 | }
|
---|
| 707 |
|
---|
| 708 | ///////////////////////////////////////////////////////////////////
|
---|
| 709 | /********* Methode *********/
|
---|
[914] | 710 | /*!
|
---|
| 711 | Addition du contenu de l'histo pour x,y poids w.
|
---|
| 712 | */
|
---|
[763] | 713 | void Histo2D::Add(float x, float y, float w)
|
---|
| 714 | {
|
---|
| 715 | list<bande_slice>::iterator it;
|
---|
| 716 | int i,j;
|
---|
| 717 | FindBin(x,y,i,j);
|
---|
| 718 |
|
---|
| 719 | if( hprojx != NULL ) hprojx->Add(x,w);
|
---|
| 720 | if( hprojy != NULL ) hprojy->Add(y,w);
|
---|
| 721 |
|
---|
| 722 | if(lbandx.size()>0)
|
---|
| 723 | for( it = lbandx.begin(); it != lbandx.end(); it++)
|
---|
| 724 | if( (*it).min <= y && y < (*it).max ) (*it).H->Add(x,w);
|
---|
| 725 |
|
---|
| 726 | if(lbandy.size()>0)
|
---|
| 727 | for( it = lbandy.begin(); it != lbandy.end(); it++)
|
---|
| 728 | if( (*it).min <= x && x < (*it).max ) (*it).H->Add(y,w);
|
---|
| 729 |
|
---|
| 730 | if(lslix.size()>0)
|
---|
| 731 | for( it = lslix.begin(); it != lslix.end(); it++)
|
---|
| 732 | if( (*it).min <= y && y < (*it).max ) (*it).H->Add(x,w);
|
---|
| 733 |
|
---|
| 734 | if(lsliy.size()>0)
|
---|
| 735 | for( it = lsliy.begin(); it != lsliy.end(); it++)
|
---|
| 736 | if( (*it).min <= x && x < (*it).max ) (*it).H->Add(y,w);
|
---|
| 737 |
|
---|
| 738 | if( i<0 || i>=nx || j<0 || j>=ny ) {
|
---|
| 739 | if(i<0) i=0; else if(i>=nx) i=2; else i=1;
|
---|
| 740 | if(j<0) j=0; else if(j>=ny) j=2; else j=1;
|
---|
| 741 | over[i][j] += w;
|
---|
| 742 | over[1][1] += w;
|
---|
| 743 | return;
|
---|
| 744 | }
|
---|
| 745 |
|
---|
| 746 | data[j*nx+i] += w;
|
---|
| 747 | if(err2!=NULL) err2[j*nx+i] += w*w;
|
---|
| 748 | nHist += w;
|
---|
| 749 | nEntries++;
|
---|
| 750 | }
|
---|
| 751 |
|
---|
| 752 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 753 | /*!
|
---|
| 754 | Recherche du bin du maximum dans le pave [il,ih][jl,jh].
|
---|
| 755 | */
|
---|
[763] | 756 | void Histo2D::IJMax(int& imax,int& jmax,int il,int ih,int jl,int jh)
|
---|
| 757 | {
|
---|
| 758 | if( il > ih ) { il = 0; ih = nx-1; }
|
---|
| 759 | if( jl > jh ) { jl = 0; jh = ny-1; }
|
---|
| 760 | if( il < 0 ) il = 0;
|
---|
| 761 | if( jl < 0 ) jl = 0;
|
---|
| 762 | if( ih >= nx ) ih = nx-1;
|
---|
| 763 | if( jh >= ny ) jh = ny-1;
|
---|
| 764 |
|
---|
| 765 | imax = jmax = 0;
|
---|
| 766 | if(nxy==1) return;
|
---|
| 767 |
|
---|
| 768 | float mx=(*this)(il,jl);
|
---|
| 769 | for (int i=il; i<=ih; i++)
|
---|
| 770 | for (int j=jl; j<=jh; j++)
|
---|
| 771 | if ((*this)(i,j)>mx) {imax = i; jmax = j; mx=(*this)(i,j);}
|
---|
| 772 | }
|
---|
| 773 |
|
---|
[914] | 774 | /*!
|
---|
| 775 | Recherche du bin du minimum dans le pave [il,ih][jl,jh].
|
---|
| 776 | */
|
---|
[763] | 777 | void Histo2D::IJMin(int& imax,int& jmax,int il,int ih,int jl,int jh)
|
---|
| 778 | {
|
---|
| 779 | if( il > ih ) { il = 0; ih = nx-1; }
|
---|
| 780 | if( jl > jh ) { jl = 0; jh = ny-1; }
|
---|
| 781 | if( il < 0 ) il = 0;
|
---|
| 782 | if( jl < 0 ) jl = 0;
|
---|
| 783 | if( ih >= nx ) ih = nx-1;
|
---|
| 784 | if( jh >= ny ) jh = ny-1;
|
---|
| 785 |
|
---|
| 786 | imax = jmax = 0;
|
---|
| 787 | if(nxy==1) return;
|
---|
| 788 |
|
---|
| 789 | float mx=(*this)(il,jl);
|
---|
| 790 | for (int i=il; i<=ih; i++)
|
---|
| 791 | for (int j=jl; j<=jh; j++)
|
---|
| 792 | if ((*this)(i,j)<mx) {imax = i; jmax = j; mx=(*this)(i,j);}
|
---|
| 793 | }
|
---|
| 794 |
|
---|
| 795 |
|
---|
[914] | 796 | /*!
|
---|
| 797 | Recherche du maximum dans le pave [il,ih][jl,jh].
|
---|
| 798 | */
|
---|
[763] | 799 | float Histo2D::VMax(int il,int ih,int jl,int jh) const
|
---|
| 800 | {
|
---|
| 801 | if( il > ih ) { il = 0; ih = nx-1; }
|
---|
| 802 | if( jl > jh ) { jl = 0; jh = ny-1; }
|
---|
| 803 | if( il < 0 ) il = 0;
|
---|
| 804 | if( jl < 0 ) jl = 0;
|
---|
| 805 | if( ih >= nx ) ih = nx-1;
|
---|
| 806 | if( jh >= ny ) jh = ny-1;
|
---|
| 807 |
|
---|
| 808 | float mx=(*this)(il,jl);
|
---|
| 809 | if(nxy==1) return mx;
|
---|
| 810 | for (int i=il; i<=ih; i++)
|
---|
| 811 | for (int j=jl; j<=jh; j++)
|
---|
| 812 | if ((*this)(i,j)>mx) mx=(*this)(i,j);
|
---|
| 813 | return mx;
|
---|
| 814 | }
|
---|
| 815 |
|
---|
[914] | 816 | /*!
|
---|
| 817 | Recherche du minimum dans le pave [il,ih][jl,jh].
|
---|
| 818 | */
|
---|
[763] | 819 | float Histo2D::VMin(int il,int ih,int jl,int jh) const
|
---|
| 820 | {
|
---|
| 821 | if( il > ih ) { il = 0; ih = nx-1; }
|
---|
| 822 | if( jl > jh ) { jl = 0; jh = ny-1; }
|
---|
| 823 | if( il < 0 ) il = 0;
|
---|
| 824 | if( jl < 0 ) jl = 0;
|
---|
| 825 | if( ih >= nx ) ih = nx-1;
|
---|
| 826 | if( jh >= ny ) jh = ny-1;
|
---|
| 827 |
|
---|
| 828 | float mx=(*this)(il,jl);
|
---|
| 829 | if(nxy==1) return mx;
|
---|
| 830 | for (int i=il; i<=ih; i++)
|
---|
| 831 | for (int j=jl; j<=jh; j++)
|
---|
| 832 | if ((*this)(i,j)<mx) mx=(*this)(i,j);
|
---|
| 833 | return mx;
|
---|
| 834 | }
|
---|
| 835 |
|
---|
| 836 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 837 | /*!
|
---|
| 838 | Renvoie les under.overflow dans les 8 quadrants.
|
---|
| 839 | \verbatim
|
---|
| 840 | over[3][3]: 20 | 21 | 22
|
---|
| 841 | | |
|
---|
| 842 | --------------
|
---|
| 843 | | |
|
---|
| 844 | 10 | 11 | 12 11 = all overflow+underflow
|
---|
| 845 | | |
|
---|
| 846 | --------------
|
---|
| 847 | | |
|
---|
| 848 | 00 | 01 | 02
|
---|
| 849 | \endverbatim
|
---|
| 850 | */
|
---|
[763] | 851 | float Histo2D::NOver(int i,int j) const
|
---|
| 852 | {
|
---|
| 853 | if( i < 0 || i>=3 || j < 0 || j>=3 ) return over[1][1];
|
---|
| 854 | return over[i][j];
|
---|
| 855 | }
|
---|
| 856 |
|
---|
| 857 |
|
---|
| 858 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 859 | /*!
|
---|
| 860 | Retourne le nombre de bins non-nuls.
|
---|
| 861 | */
|
---|
[763] | 862 | int Histo2D::BinNonNul() const
|
---|
| 863 | {
|
---|
| 864 | int non=0;
|
---|
| 865 | for (int i=0;i<nxy;i++) if( data[i] != 0. ) non++;
|
---|
| 866 | return non;
|
---|
| 867 | }
|
---|
| 868 |
|
---|
[914] | 869 | /*!
|
---|
| 870 | Retourne le nombre de bins avec erreurs non-nulles.
|
---|
| 871 | */
|
---|
[763] | 872 | int Histo2D::ErrNonNul() const
|
---|
| 873 | {
|
---|
| 874 | if(err2==NULL) return -1;
|
---|
| 875 | int non=0;
|
---|
| 876 | for (int i=0;i<nxy;i++) if( err2[i] != 0. ) non++;
|
---|
| 877 | return non;
|
---|
| 878 | }
|
---|
| 879 |
|
---|
| 880 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 881 | /*!
|
---|
| 882 | Idem EstimeMax(int...) mais retourne x,y.
|
---|
| 883 | */
|
---|
[763] | 884 | int Histo2D::EstimeMax(float& xm,float& ym,int SzPav
|
---|
| 885 | ,int il,int ih,int jl,int jh)
|
---|
| 886 | {
|
---|
| 887 | int im,jm;
|
---|
| 888 | IJMax(im,jm,il,ih,jl,jh);
|
---|
| 889 | return EstimeMax(im,jm,xm,ym,SzPav);
|
---|
| 890 | }
|
---|
| 891 |
|
---|
[914] | 892 | /*!
|
---|
| 893 | Determine les abscisses et ordonnees du maximum donne par im,jm
|
---|
| 894 | en moyennant dans un pave SzPav x SzPav autour du maximum.
|
---|
| 895 | \verbatim
|
---|
| 896 | Return:
|
---|
| 897 | 0 = si fit maximum reussi avec SzPav pixels
|
---|
| 898 | 1 = si fit maximum reussi avec moins que SzPav pixels
|
---|
| 899 | dans au moins 1 direction
|
---|
| 900 | 2 = si fit maximum echoue et renvoit BinCenter()
|
---|
| 901 | -1 = si echec: SzPav <= 0 ou im,jm hors limites
|
---|
| 902 | \endverbatim
|
---|
| 903 | */
|
---|
[763] | 904 | int Histo2D::EstimeMax(int im,int jm,float& xm,float& ym,int SzPav)
|
---|
| 905 | {
|
---|
| 906 | xm = ym = 0;
|
---|
| 907 | if( SzPav <= 0 ) return -1;
|
---|
| 908 | if( im < 0 || im >= nx ) return -1;
|
---|
| 909 | if( jm < 0 || jm >= ny ) return -1;
|
---|
| 910 |
|
---|
| 911 | if( SzPav%2 == 0 ) SzPav++;
|
---|
| 912 | SzPav = (SzPav-1)/2;
|
---|
| 913 |
|
---|
| 914 | int rc = 0;
|
---|
| 915 | double dxm = 0, dym = 0, wx = 0;
|
---|
| 916 | for(int i=im-SzPav;i<=im+SzPav;i++) {
|
---|
| 917 | if( i<0 || i>= nx ) {rc=1; continue;}
|
---|
| 918 | for(int j=jm-SzPav;j<=jm+SzPav;j++) {
|
---|
| 919 | if( j<0 || j>= ny ) {rc=1; continue;}
|
---|
| 920 | float x,y;
|
---|
| 921 | BinCenter(i,j,x,y);
|
---|
| 922 | dxm += x * (*this)(i,j);
|
---|
| 923 | dym += y * (*this)(i,j);
|
---|
| 924 | wx += (*this)(i,j);
|
---|
| 925 | }
|
---|
| 926 | }
|
---|
| 927 |
|
---|
| 928 | if( wx > 0. ) {
|
---|
| 929 | xm = dxm/wx;
|
---|
| 930 | ym = dym/wx;
|
---|
| 931 | return rc;
|
---|
| 932 | } else {
|
---|
| 933 | BinCenter(im,jm,xm,ym);
|
---|
| 934 | return 2;
|
---|
| 935 | }
|
---|
| 936 |
|
---|
| 937 | }
|
---|
| 938 |
|
---|
[914] | 939 | /*!
|
---|
| 940 | Pour trouver le maximum de l'histogramme en tenant compte
|
---|
| 941 | des fluctuations.
|
---|
| 942 | \verbatim
|
---|
| 943 | Methode:
|
---|
| 944 | 1-/ On recherche le bin maximum MAX de l'histogramme
|
---|
| 945 | 2-/ On considere que tous les pixels compris entre [MAX-Dz,MAX]
|
---|
| 946 | peuvent etre des pixels maxima.
|
---|
| 947 | 3-/ On identifie le bin maximum en choissisant le pixel du 2-/
|
---|
| 948 | tel que la somme des pixels dans un pave SzPav x SzPav soit maximale.
|
---|
| 949 | INPUT:
|
---|
| 950 | SzPav = taille du pave pour departager
|
---|
| 951 | Dz = tolerance pour identifier tous les pixels "maximum"
|
---|
| 952 | OUTPUT:
|
---|
| 953 | im,jm = pixel maximum trouve
|
---|
| 954 | RETURN:
|
---|
| 955 | <0 = Echec
|
---|
| 956 | >0 = nombre de pixels possibles pour le maximum
|
---|
| 957 | \endverbatim
|
---|
| 958 | */
|
---|
[763] | 959 | int Histo2D::FindMax(int& im,int& jm,int SzPav,float Dz
|
---|
| 960 | ,int il,int ih,int jl,int jh)
|
---|
| 961 | {
|
---|
| 962 | if( il > ih ) { il = 0; ih = nx-1; }
|
---|
| 963 | if( jl > jh ) { jl = 0; jh = ny-1; }
|
---|
| 964 | if( il < 0 ) il = 0;
|
---|
| 965 | if( jl < 0 ) jl = 0;
|
---|
| 966 | if( ih >= nx ) ih = nx-1;
|
---|
| 967 | if( jh >= ny ) jh = ny-1;
|
---|
| 968 | if( SzPav < 0 ) SzPav = 0;
|
---|
| 969 | else { if( SzPav%2 == 0 ) SzPav++; SzPav = (SzPav-1)/2;}
|
---|
| 970 | if( Dz < 0 ) Dz = 0.;
|
---|
| 971 | float max = VMax(il,ih,jl,jh) - Dz;
|
---|
| 972 | int nmax = 0;
|
---|
| 973 | float sumx = -MAXFLOAT;
|
---|
| 974 | for(int i=il;i<=ih;i++) for(int j=jl;j<=jh;j++) {
|
---|
| 975 | if( (*this)(i,j) < max) continue;
|
---|
| 976 | nmax++;
|
---|
| 977 | float sum = 0.;
|
---|
| 978 | for(int ii=i-SzPav;ii<=i+SzPav;ii++) {
|
---|
| 979 | if( ii<0 || ii >= nx ) continue;
|
---|
| 980 | for(int jj=j-SzPav;jj<=j+SzPav;jj++) {
|
---|
| 981 | if( jj<0 || jj >= ny ) continue;
|
---|
| 982 | sum += (*this)(ii,jj);
|
---|
| 983 | }
|
---|
| 984 | }
|
---|
| 985 | if( sum > sumx ) { im = i; jm = j; sumx = sum;}
|
---|
| 986 | }
|
---|
| 987 | if( nmax <= 0 ) { IJMax(im,jm,il,ih,jl,jh); return 1;}
|
---|
| 988 | return nmax;
|
---|
| 989 | }
|
---|
| 990 |
|
---|
| 991 | //////////////////////////////////////////////////////////
|
---|
| 992 |
|
---|
| 993 | //////////////////////////////////////////////////////////
|
---|
[914] | 994 | /*!
|
---|
| 995 | Fit de l'histogramme par ``gfit''.
|
---|
| 996 | \verbatim
|
---|
| 997 | typ_err = 0 :
|
---|
| 998 | - erreur attachee au bin si elle existe
|
---|
| 999 | - sinon 1
|
---|
| 1000 | typ_err = 1 :
|
---|
| 1001 | - erreur attachee au bin si elle existe
|
---|
| 1002 | - sinon max( sqrt(abs(bin) ,1 )
|
---|
| 1003 | typ_err = 2 :
|
---|
| 1004 | - erreur forcee a 1
|
---|
| 1005 | typ_err = 3 :
|
---|
| 1006 | - erreur forcee a max( sqrt(abs(bin) ,1 )
|
---|
| 1007 | typ_err = 4 :
|
---|
| 1008 | - erreur forcee a 1, nulle si bin a zero.
|
---|
| 1009 | typ_err = 5 :
|
---|
| 1010 | - erreur forcee a max( sqrt(abs(bin) ,1 ),
|
---|
| 1011 | nulle si bin a zero.
|
---|
| 1012 | \endverbatim
|
---|
| 1013 | */
|
---|
[763] | 1014 | int Histo2D::Fit(GeneralFit& gfit,unsigned short typ_err)
|
---|
| 1015 | {
|
---|
| 1016 | if(NBinX()*NBinY()<=0) return -1000;
|
---|
| 1017 | if(typ_err>5) typ_err=0;
|
---|
| 1018 |
|
---|
| 1019 | GeneralFitData mydata(2,NBinX()*NBinY());
|
---|
| 1020 |
|
---|
| 1021 | for(int i=0;i<NBinX();i++) for(int j=0;j<NBinY();j++) {
|
---|
| 1022 | float x,y;
|
---|
| 1023 | BinCenter(i,j,x,y);
|
---|
| 1024 | double f = (double) (*this)(i,j);
|
---|
| 1025 | double saf = sqrt(fabs(f)); if(saf<1.) saf=1.;
|
---|
| 1026 | double e;
|
---|
| 1027 | if(typ_err==0) {if(HasErrors()) e=Error(i,j); else e=1.;}
|
---|
| 1028 | else if(typ_err==1) {if(HasErrors()) e=Error(i,j); else e=saf;}
|
---|
| 1029 | else if(typ_err==2) e=1.;
|
---|
| 1030 | else if(typ_err==3) e=saf;
|
---|
| 1031 | else if(typ_err==4) e=(f==0.)?0.:1.;
|
---|
| 1032 | else if(typ_err==5) e=(f==0.)?0.:saf;
|
---|
| 1033 | mydata.AddData2((double) x,(double) y,f,e);
|
---|
| 1034 | }
|
---|
| 1035 |
|
---|
| 1036 | gfit.SetData(&mydata);
|
---|
| 1037 |
|
---|
| 1038 | return gfit.Fit();
|
---|
| 1039 | }
|
---|
| 1040 |
|
---|
[914] | 1041 | /*!
|
---|
| 1042 | Retourne une classe contenant les residus du fit ``gfit''.
|
---|
| 1043 | */
|
---|
[763] | 1044 | Histo2D Histo2D::FitResidus(GeneralFit& gfit)
|
---|
| 1045 | {
|
---|
| 1046 | if(NBinX()<=0 || NBinY()<=0)
|
---|
| 1047 | throw(SzMismatchError("Histo2D::FitResidus: size mismatch\n"));
|
---|
| 1048 | GeneralFunction* f = gfit.GetFunction();
|
---|
| 1049 | if(f==NULL)
|
---|
| 1050 | throw(NullPtrError("Histo2D::FitResidus: NULL pointer\n"));
|
---|
| 1051 | Vector par = gfit.GetParm();
|
---|
| 1052 | Histo2D h2(*this);
|
---|
| 1053 | for(int i=0;i<NBinX();i++) for(int j=0;j<NBinY();j++) {
|
---|
| 1054 | float xc,yc;
|
---|
| 1055 | BinCenter(i,j,xc,yc);
|
---|
| 1056 | double x[2] = {(double)xc,(double)yc};
|
---|
| 1057 | h2(i,j) -= (float) f->Value(x,par.Data());
|
---|
| 1058 | }
|
---|
| 1059 | return h2;
|
---|
| 1060 | }
|
---|
| 1061 |
|
---|
[914] | 1062 | /*!
|
---|
| 1063 | Retourne une classe contenant la fonction du fit ``gfit''.
|
---|
| 1064 | */
|
---|
[763] | 1065 | Histo2D Histo2D::FitFunction(GeneralFit& gfit)
|
---|
| 1066 | {
|
---|
| 1067 | if(NBinX()<=0 || NBinY()<=0)
|
---|
| 1068 | throw(SzMismatchError("Histo2D::FitFunction: size mismatch\n"));
|
---|
| 1069 | GeneralFunction* f = gfit.GetFunction();
|
---|
| 1070 | if(f==NULL)
|
---|
| 1071 | throw(NullPtrError("Histo2D::FitFunction: NULL pointer\n"));
|
---|
| 1072 | Vector par = gfit.GetParm();
|
---|
| 1073 | Histo2D h2(*this);
|
---|
| 1074 | for(int i=0;i<NBinX();i++) for(int j=0;j<NBinY();j++) {
|
---|
| 1075 | float xc,yc;
|
---|
| 1076 | BinCenter(i,j,xc,yc);
|
---|
| 1077 | double x[2] = {(double)xc,(double)yc};
|
---|
| 1078 | h2(i,j) = (float) f->Value(x,par.Data());
|
---|
| 1079 | }
|
---|
| 1080 | return h2;
|
---|
| 1081 | }
|
---|
| 1082 |
|
---|
| 1083 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 1084 | /*!
|
---|
| 1085 | Impression des informations sur l'histogramme.
|
---|
| 1086 | */
|
---|
[763] | 1087 | void Histo2D::PrintStatus()
|
---|
| 1088 | {
|
---|
| 1089 | printf("~Histo::Print nHist=%g nEntries=%d\n",nHist,nEntries);
|
---|
| 1090 | printf("over: [ %g %g %g // %g %g %g // %g %g %g ]\n"
|
---|
| 1091 | ,over[2][0],over[2][1],over[2][2]
|
---|
| 1092 | ,over[1][0],over[1][1],over[1][2]
|
---|
| 1093 | ,over[0][0],over[0][1],over[0][2]);
|
---|
| 1094 | printf(" nx=%d xmin=%g xmax=%g binx=%g ",nx,xmin,xmax,wbinx);
|
---|
| 1095 | printf(" ny=%d ymin=%g ymax=%g biny=%g\n",ny,ymin,ymax,wbiny);
|
---|
| 1096 | }
|
---|
| 1097 |
|
---|
| 1098 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 1099 | /*!
|
---|
| 1100 | Impression de l'histogramme sur stdout entre [il,ih] et [jl,jh].
|
---|
| 1101 | \verbatim
|
---|
| 1102 | numero d'index: 00000000001111111111222222222233333
|
---|
| 1103 | 01234567890123456789012345678901234
|
---|
| 1104 | valeur entiere: 00000000001111111111222222222233333
|
---|
| 1105 | 12345678901234567890123456789012345
|
---|
| 1106 | \endverbatim
|
---|
| 1107 | */
|
---|
[763] | 1108 | void Histo2D::Print(float min,float max
|
---|
| 1109 | ,int il,int ih,int jl,int jh)
|
---|
| 1110 | {
|
---|
| 1111 | int ns = 35;
|
---|
| 1112 | const char *s = "+23456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
---|
| 1113 |
|
---|
| 1114 | if( il > ih ) { il = 0; ih = nx-1; }
|
---|
| 1115 | if( jl > jh ) { jl = 0; jh = ny-1; }
|
---|
| 1116 | if( il < 0 ) il = 0;
|
---|
| 1117 | if( jl < 0 ) jl = 0;
|
---|
| 1118 | if( ih >= nx ) ih = nx-1;
|
---|
| 1119 | if( jh >= ny ) jh = ny-1;
|
---|
| 1120 |
|
---|
| 1121 | PrintStatus();
|
---|
| 1122 |
|
---|
| 1123 | if( il != 0 || ih != nx-1 || jl != 0 || jh != ny-1 ) {
|
---|
| 1124 | float xl,xh,yl,yh;
|
---|
| 1125 | BinLowEdge(il,jl,xl,yl);
|
---|
| 1126 | BinHighEdge(ih,jh,xh,yh);
|
---|
| 1127 | printf(" impression");
|
---|
| 1128 | printf(" en X: %d=[%d,%d] xmin=%g xmax=%g "
|
---|
| 1129 | ,ih-il+1,il,ih,xl,xh);
|
---|
| 1130 | printf(" en Y: %d=[%d,%d] ymin=%g ymax=%g\n"
|
---|
| 1131 | ,jh-jl+1,jl,jh,yl,yh);
|
---|
| 1132 | }
|
---|
| 1133 |
|
---|
| 1134 | if(min >= max) { if(min != 0.) min = VMin(il,ih,jl,jh); else min=0.;
|
---|
| 1135 | max = VMax(il,ih,jl,jh); }
|
---|
| 1136 | if(min>max) return;
|
---|
| 1137 | if(min==max) {min -= 1.; max += 1.;}
|
---|
| 1138 | printf(" min=%g max=%g\n",min,max);
|
---|
| 1139 |
|
---|
| 1140 | // imprime numero de bin en colonne
|
---|
| 1141 | printf("\n");
|
---|
| 1142 | if( nx-1 >= 100 ) {
|
---|
| 1143 | printf(" ");
|
---|
| 1144 | for(int i=il;i<=ih;i++) printf("%1d",(int) (i%1000)/100);
|
---|
| 1145 | printf("\n");
|
---|
| 1146 | }
|
---|
| 1147 | if( nx-1 >= 10 ) {
|
---|
| 1148 | printf(" ");
|
---|
| 1149 | for(int i=il;i<=ih;i++) printf("%1d",(int) (i%100)/10);
|
---|
| 1150 | printf("\n");
|
---|
| 1151 | }
|
---|
| 1152 | printf(" ");
|
---|
| 1153 | for(int i=il;i<=ih;i++) printf("%1d",i%10);
|
---|
| 1154 | printf("\n");
|
---|
| 1155 | printf(" "); {for(int i=il;i<=ih;i++) printf("-"); printf("\n");}
|
---|
| 1156 |
|
---|
| 1157 | // imprime histogramme
|
---|
| 1158 | for(int j=jh;j>=jl;j--) {
|
---|
| 1159 | printf("%3d: ",j);
|
---|
| 1160 | for(int i=il;i<=ih;i++) {
|
---|
| 1161 | int h;
|
---|
| 1162 | if( 1<=max-min && max-min<=35 ) h = (int)( (*this)(i,j) - min ) - 1;
|
---|
| 1163 | else h = (int)( ((*this)(i,j)-min)/(max-min) * ns ) - 1;
|
---|
| 1164 | char c;
|
---|
| 1165 | if(h<0 && (*this)(i,j)>min) c = '.';
|
---|
| 1166 | else if(h<0) c = ' ';
|
---|
| 1167 | else if(h>=ns) c = '*';
|
---|
| 1168 | else c = s[h];
|
---|
| 1169 | printf("%c",c);
|
---|
| 1170 | }
|
---|
| 1171 | printf("\n");
|
---|
| 1172 | }
|
---|
| 1173 |
|
---|
| 1174 | // imprime numero de bin en colonne
|
---|
| 1175 | printf(" "); {for(int i=il;i<=ih;i++) printf("-"); printf("\n");}
|
---|
| 1176 | if( nx-1 >= 100 ) {
|
---|
| 1177 | printf(" ");
|
---|
| 1178 | for(int i=il;i<=ih;i++) printf("%1d",(int) (i%1000)/100);
|
---|
| 1179 | printf("\n");
|
---|
| 1180 | }
|
---|
| 1181 | if( nx-1 >= 10 ) {
|
---|
| 1182 | printf(" ");
|
---|
| 1183 | for(int i=il;i<=ih;i++) printf("%1d",(int) (i%100)/10);
|
---|
| 1184 | printf("\n");
|
---|
| 1185 | }
|
---|
| 1186 | printf(" ");
|
---|
| 1187 | {for(int i=il;i<=ih;i++) printf("%1d",i%10);}
|
---|
| 1188 | printf("\n");
|
---|
| 1189 |
|
---|
| 1190 | }
|
---|
| 1191 |
|
---|
| 1192 | ///////////////////////////////////////////////////////////////////
|
---|
| 1193 | // Titre Methodes pour gerer les projections
|
---|
| 1194 |
|
---|
[914] | 1195 | /*!
|
---|
| 1196 | Pour creer la projection X.
|
---|
| 1197 | */
|
---|
[763] | 1198 | void Histo2D::SetProjX()
|
---|
| 1199 | {
|
---|
| 1200 | if( hprojx != NULL ) DelProjX();
|
---|
| 1201 | hprojx = new Histo(xmin,xmax,nx);
|
---|
| 1202 | if( err2 != NULL && hprojx != NULL ) hprojx->Errors();
|
---|
| 1203 | }
|
---|
| 1204 |
|
---|
[914] | 1205 | /*!
|
---|
| 1206 | Pour creer la projection Y.
|
---|
| 1207 | */
|
---|
[763] | 1208 | void Histo2D::SetProjY()
|
---|
| 1209 | {
|
---|
| 1210 | if( hprojy != NULL ) DelProjY();
|
---|
| 1211 | hprojy = new Histo(ymin,ymax,ny);
|
---|
| 1212 | if( err2 != NULL && hprojy != NULL ) hprojy->Errors();
|
---|
| 1213 | }
|
---|
| 1214 |
|
---|
[914] | 1215 | /*!
|
---|
| 1216 | Pour creer les projections X et Y.
|
---|
| 1217 | */
|
---|
[763] | 1218 | void Histo2D::SetProj()
|
---|
| 1219 | {
|
---|
| 1220 | SetProjX();
|
---|
| 1221 | SetProjY();
|
---|
| 1222 | }
|
---|
| 1223 |
|
---|
[914] | 1224 | /*!
|
---|
| 1225 | Informations sur les projections.
|
---|
| 1226 | */
|
---|
[763] | 1227 | void Histo2D::ShowProj()
|
---|
| 1228 | {
|
---|
| 1229 | if( hprojx != NULL ) cout << ">>>> Projection X set : "<< hprojx <<endl;
|
---|
| 1230 | else cout << ">>>> NO Projection X set"<<endl;
|
---|
| 1231 | if( hprojy != NULL ) cout << ">>>> Projection Y set : "<< hprojy <<endl;
|
---|
| 1232 | else cout << ">>>> NO Projection Y set"<<endl;
|
---|
| 1233 | }
|
---|
| 1234 |
|
---|
[914] | 1235 | /*!
|
---|
| 1236 | Destruction de l'histogramme de la projection selon X.
|
---|
| 1237 | */
|
---|
[763] | 1238 | void Histo2D::DelProjX()
|
---|
| 1239 | {
|
---|
| 1240 | if( hprojx == NULL ) return;
|
---|
| 1241 | delete hprojx;
|
---|
| 1242 | hprojx = NULL;
|
---|
| 1243 | }
|
---|
| 1244 |
|
---|
[914] | 1245 | /*!
|
---|
| 1246 | Destruction de l'histogramme de la projection selon X.
|
---|
| 1247 | */
|
---|
[763] | 1248 | void Histo2D::DelProjY()
|
---|
| 1249 | {
|
---|
| 1250 | if( hprojy == NULL ) return;
|
---|
| 1251 | delete hprojy;
|
---|
| 1252 | hprojy = NULL;
|
---|
| 1253 | }
|
---|
| 1254 |
|
---|
[914] | 1255 | /*!
|
---|
| 1256 | Destruction des histogrammes des projections selon X et Y.
|
---|
| 1257 | */
|
---|
[763] | 1258 | void Histo2D::DelProj()
|
---|
| 1259 | {
|
---|
| 1260 | DelProjX();
|
---|
| 1261 | DelProjY();
|
---|
| 1262 | }
|
---|
| 1263 |
|
---|
[914] | 1264 | /*!
|
---|
| 1265 | Remise a zero de la projection selon X.
|
---|
| 1266 | */
|
---|
[763] | 1267 | void Histo2D::ZeroProjX()
|
---|
| 1268 | {
|
---|
| 1269 | if( hprojx == NULL ) return;
|
---|
| 1270 | hprojx->Zero();
|
---|
| 1271 | }
|
---|
| 1272 |
|
---|
[914] | 1273 | /*!
|
---|
| 1274 | Remise a zero de la projection selon Y.
|
---|
| 1275 | */
|
---|
[763] | 1276 | void Histo2D::ZeroProjY()
|
---|
| 1277 | {
|
---|
| 1278 | if( hprojy == NULL ) return;
|
---|
| 1279 | hprojy->Zero();
|
---|
| 1280 | }
|
---|
| 1281 |
|
---|
[914] | 1282 | /*!
|
---|
| 1283 | Remise a zero des projections selon X et Y.
|
---|
| 1284 | */
|
---|
[763] | 1285 | void Histo2D::ZeroProj()
|
---|
| 1286 | {
|
---|
| 1287 | ZeroProjX();
|
---|
| 1288 | ZeroProjY();
|
---|
| 1289 | }
|
---|
| 1290 |
|
---|
| 1291 | ///////////////////////////////////////////////////////////////////
|
---|
| 1292 | // Titre Methodes pour gerer les bandes
|
---|
| 1293 |
|
---|
[914] | 1294 | /*!
|
---|
| 1295 | Pour creer une bande en X entre ybmin et ybmax.
|
---|
| 1296 | */
|
---|
[763] | 1297 | int Histo2D::SetBandX(float ybmin,float ybmax)
|
---|
| 1298 | {
|
---|
| 1299 | b_s.num = lbandx.size();
|
---|
| 1300 | b_s.min = ybmin;
|
---|
| 1301 | b_s.max = ybmax;
|
---|
| 1302 | b_s.H = new Histo(xmin,xmax,nx);
|
---|
| 1303 | lbandx.push_back(b_s);
|
---|
| 1304 | b_s.H = NULL;
|
---|
| 1305 | return lbandx.size()-1;
|
---|
| 1306 | }
|
---|
| 1307 |
|
---|
[914] | 1308 | /*!
|
---|
| 1309 | Pour creer une bande en Y entre xbmin et xbmax.
|
---|
| 1310 | */
|
---|
[763] | 1311 | int Histo2D::SetBandY(float xbmin,float xbmax)
|
---|
| 1312 | {
|
---|
| 1313 | b_s.num = lbandy.size();
|
---|
| 1314 | b_s.min = xbmin;
|
---|
| 1315 | b_s.max = xbmax;
|
---|
| 1316 | b_s.H = new Histo(ymin,ymax,ny);
|
---|
| 1317 | lbandy.push_back(b_s);
|
---|
| 1318 | b_s.H = NULL;
|
---|
| 1319 | return lbandy.size()-1;
|
---|
| 1320 | }
|
---|
| 1321 |
|
---|
[914] | 1322 | /*!
|
---|
| 1323 | Destruction des histogrammes des bandes selon X.
|
---|
| 1324 | */
|
---|
[763] | 1325 | void Histo2D::DelBandX()
|
---|
| 1326 | {
|
---|
| 1327 | if( lbandx.size() <= 0 ) return;
|
---|
| 1328 | for(list<bande_slice>::iterator i = lbandx.begin(); i != lbandx.end(); i++)
|
---|
| 1329 | if( (*i).H != NULL ) {delete (*i).H; (*i).H=NULL;}
|
---|
| 1330 | lbandx.erase(lbandx.begin(),lbandx.end());
|
---|
| 1331 | }
|
---|
| 1332 |
|
---|
[914] | 1333 | /*!
|
---|
| 1334 | Destruction des histogrammes des bandes selon Y.
|
---|
| 1335 | */
|
---|
[763] | 1336 | void Histo2D::DelBandY()
|
---|
| 1337 | {
|
---|
| 1338 | if( lbandy.size() <= 0 ) return;
|
---|
| 1339 | for(list<bande_slice>::iterator i = lbandy.begin(); i != lbandy.end(); i++)
|
---|
| 1340 | if( (*i).H != NULL ) {delete (*i).H; (*i).H=NULL;}
|
---|
| 1341 | lbandy.erase(lbandy.begin(),lbandy.end());
|
---|
| 1342 | }
|
---|
| 1343 |
|
---|
[914] | 1344 | /*!
|
---|
| 1345 | Remise a zero des bandes selon X.
|
---|
| 1346 | */
|
---|
[763] | 1347 | void Histo2D::ZeroBandX()
|
---|
| 1348 | {
|
---|
| 1349 | if( lbandx.size() <= 0 ) return;
|
---|
| 1350 | list<bande_slice>::iterator i;
|
---|
| 1351 | for(i = lbandx.begin(); i != lbandx.end(); i++)
|
---|
| 1352 | (*i).H->Zero();
|
---|
| 1353 | }
|
---|
| 1354 |
|
---|
[914] | 1355 | /*!
|
---|
| 1356 | Remise a zero des bandes selon Y.
|
---|
| 1357 | */
|
---|
[763] | 1358 | void Histo2D::ZeroBandY()
|
---|
| 1359 | {
|
---|
| 1360 | if( lbandy.size() <= 0 ) return;
|
---|
| 1361 | list<bande_slice>::iterator i;
|
---|
| 1362 | for(i = lbandy.begin(); i != lbandy.end(); i++)
|
---|
| 1363 | (*i).H->Zero();
|
---|
| 1364 | }
|
---|
| 1365 |
|
---|
[914] | 1366 | /*!
|
---|
| 1367 | Retourne un pointeur sur la bande numero `n' selon X.
|
---|
| 1368 | */
|
---|
[763] | 1369 | Histo* Histo2D::HBandX(int n) const
|
---|
| 1370 | {
|
---|
| 1371 | if( lbandx.size() <= 0 || n < 0 || n >= (int) lbandx.size() ) return NULL;
|
---|
| 1372 | for(list<bande_slice>::const_iterator i = lbandx.begin(); i != lbandx.end(); i++)
|
---|
| 1373 | if( (*i).num == n ) return (*i).H;
|
---|
| 1374 | return NULL;
|
---|
| 1375 | }
|
---|
| 1376 |
|
---|
[914] | 1377 | /*!
|
---|
| 1378 | Retourne un pointeur sur la bande numero `n' selon Y.
|
---|
| 1379 | */
|
---|
[763] | 1380 | Histo* Histo2D::HBandY(int n) const
|
---|
| 1381 | {
|
---|
| 1382 | if( lbandy.size() <= 0 || n < 0 || n >= (int) lbandy.size() ) return NULL;
|
---|
| 1383 | for(list<bande_slice>::const_iterator i = lbandy.begin(); i != lbandy.end(); i++)
|
---|
| 1384 | if( (*i).num == n ) return (*i).H;
|
---|
| 1385 | return NULL;
|
---|
| 1386 | }
|
---|
| 1387 |
|
---|
[914] | 1388 | /*!
|
---|
| 1389 | Retourne les limites de la bande numero `n' selon X.
|
---|
| 1390 | */
|
---|
[763] | 1391 | void Histo2D::GetBandX(int n,float& ybmin,float& ybmax) const
|
---|
| 1392 | {
|
---|
| 1393 | ybmin = 0.; ybmax = 0.;
|
---|
| 1394 | if( lbandx.size() <= 0 || n < 0 || n >= (int) lbandx.size() ) return;
|
---|
| 1395 | for(list<bande_slice>::const_iterator i = lbandx.begin(); i != lbandx.end(); i++)
|
---|
| 1396 | if( (*i).num == n ) { ybmin = (*i).min; ybmax = (*i).max; return;}
|
---|
| 1397 | return;
|
---|
| 1398 | }
|
---|
| 1399 |
|
---|
[914] | 1400 | /*!
|
---|
| 1401 | Retourne les limites de la bande numero `n' selon Y.
|
---|
| 1402 | */
|
---|
[763] | 1403 | void Histo2D::GetBandY(int n,float& xbmin,float& xbmax) const
|
---|
| 1404 | {
|
---|
| 1405 | xbmin = 0.; xbmax = 0.;
|
---|
| 1406 | if( lbandy.size() <= 0 || n < 0 || n >= (int) lbandy.size() ) return;
|
---|
| 1407 | for(list<bande_slice>::const_iterator i = lbandy.begin(); i != lbandy.end(); i++)
|
---|
| 1408 | if( (*i).num == n ) { xbmin = (*i).min; xbmax = (*i).max; return;}
|
---|
| 1409 | return;
|
---|
| 1410 | }
|
---|
| 1411 |
|
---|
[914] | 1412 | /*!
|
---|
| 1413 | Informations sur les bandes.
|
---|
| 1414 | */
|
---|
[763] | 1415 | void Histo2D::ShowBand(int lp)
|
---|
| 1416 | {
|
---|
| 1417 | cout << ">>>> Nombre de bande X : " << lbandx.size() << endl;
|
---|
| 1418 | if( lp>0 && lbandx.size()>0 ) {
|
---|
| 1419 | list<bande_slice>::iterator i;
|
---|
| 1420 | for(i = lbandx.begin(); i != lbandx.end(); i++) {
|
---|
| 1421 | cout<<" "<<(*i).num<<" de ymin="<<(*i).min<<" a ymax="<<(*i).max;
|
---|
| 1422 | if(lp>1) cout << " H=" << (*i).H;
|
---|
| 1423 | cout << endl;
|
---|
| 1424 | }
|
---|
| 1425 | }
|
---|
| 1426 |
|
---|
| 1427 | cout << ">>>> Nombre de bande Y : " << lbandy.size() << endl;
|
---|
| 1428 | if( lp>0 && lbandy.size()>0 ) {
|
---|
| 1429 | list<bande_slice>::iterator i;
|
---|
| 1430 | for(i = lbandy.begin(); i != lbandy.end(); i++) {
|
---|
| 1431 | cout<<" "<<(*i).num<<" de xmin="<<(*i).min<<" a xmax="<<(*i).max;
|
---|
| 1432 | if(lp>1) cout << " H=" << (*i).H;
|
---|
| 1433 | cout << endl;
|
---|
| 1434 | }
|
---|
| 1435 | }
|
---|
| 1436 | }
|
---|
| 1437 |
|
---|
| 1438 | ///////////////////////////////////////////////////////////////////
|
---|
[914] | 1439 | // Titre Methodes pour gerer les bandes equidistantes ou slices
|
---|
[763] | 1440 |
|
---|
[914] | 1441 | /*!
|
---|
| 1442 | Pour creer `nsli' bandes equidistantes selon X.
|
---|
| 1443 | */
|
---|
[763] | 1444 | int Histo2D::SetSliX(int nsli)
|
---|
| 1445 | {
|
---|
| 1446 | if( nsli <= 0 ) return -1;
|
---|
| 1447 | if( nsli > ny ) nsli = ny;
|
---|
| 1448 | if( lslix.size() > 0 ) DelSliX();
|
---|
| 1449 | float w = (ymax-ymin)/nsli;
|
---|
| 1450 |
|
---|
| 1451 | for(int i=0; i<nsli; i++ ) {
|
---|
| 1452 | b_s.num = i;
|
---|
| 1453 | b_s.min = ymin + i*w;
|
---|
| 1454 | b_s.max = b_s.min + w;
|
---|
| 1455 | b_s.H = new Histo(xmin,xmax,nx);
|
---|
| 1456 | lslix.push_back(b_s);
|
---|
| 1457 | b_s.H = NULL;
|
---|
| 1458 | }
|
---|
| 1459 | return (int) lslix.size();
|
---|
| 1460 | }
|
---|
| 1461 |
|
---|
[914] | 1462 | /*!
|
---|
| 1463 | Pour creer `nsli' bandes equidistantes selon Y.
|
---|
| 1464 | */
|
---|
[763] | 1465 | int Histo2D::SetSliY(int nsli)
|
---|
| 1466 | {
|
---|
| 1467 | if( nsli <= 0 ) return -1;
|
---|
| 1468 | if( nsli > nx ) nsli = nx;
|
---|
| 1469 | if( lsliy.size() > 0 ) DelSliY();
|
---|
| 1470 | float w = (xmax-xmin)/nsli;
|
---|
| 1471 |
|
---|
| 1472 | for(int i=0; i<nsli; i++ ) {
|
---|
| 1473 | b_s.num = i;
|
---|
| 1474 | b_s.min = xmin + i*w;
|
---|
| 1475 | b_s.max = b_s.min + w;
|
---|
| 1476 | b_s.H = new Histo(ymin,ymax,ny);
|
---|
| 1477 | lsliy.push_back(b_s);
|
---|
| 1478 | b_s.H = NULL;
|
---|
| 1479 | }
|
---|
| 1480 | return (int) lsliy.size();
|
---|
| 1481 | }
|
---|
| 1482 |
|
---|
[914] | 1483 | /*!
|
---|
| 1484 | Destruction des bandes equidistantes selon X.
|
---|
| 1485 | */
|
---|
[763] | 1486 | void Histo2D::DelSliX()
|
---|
| 1487 | {
|
---|
| 1488 | if( lslix.size() <= 0 ) return;
|
---|
| 1489 | for(list<bande_slice>::iterator i = lslix.begin(); i != lslix.end(); i++)
|
---|
| 1490 | if( (*i).H != NULL ) {delete (*i).H; (*i).H=NULL;}
|
---|
| 1491 | lslix.erase(lslix.begin(),lslix.end());
|
---|
| 1492 | }
|
---|
| 1493 |
|
---|
[914] | 1494 | /*!
|
---|
| 1495 | Destruction des bandes equidistantes selon Y.
|
---|
| 1496 | */
|
---|
[763] | 1497 | void Histo2D::DelSliY()
|
---|
| 1498 | {
|
---|
| 1499 | if( lsliy.size() <= 0 ) return;
|
---|
| 1500 | for(list<bande_slice>::iterator i = lsliy.begin(); i != lsliy.end(); i++)
|
---|
| 1501 | if( (*i).H != NULL ) {delete (*i).H; (*i).H=NULL;}
|
---|
| 1502 | lsliy.erase(lsliy.begin(),lsliy.end());
|
---|
| 1503 | }
|
---|
| 1504 |
|
---|
[914] | 1505 | /*!
|
---|
| 1506 | Remise a zero des bandes equidistantes selon X.
|
---|
| 1507 | */
|
---|
[763] | 1508 | void Histo2D::ZeroSliX()
|
---|
| 1509 | {
|
---|
| 1510 | if( lslix.size() <= 0 ) return;
|
---|
| 1511 | list<bande_slice>::iterator i;
|
---|
| 1512 | for(i = lslix.begin(); i != lslix.end(); i++)
|
---|
| 1513 | (*i).H->Zero();
|
---|
| 1514 | }
|
---|
| 1515 |
|
---|
[914] | 1516 | /*!
|
---|
| 1517 | Remise a zero des bandes equidistantes selon Y.
|
---|
| 1518 | */
|
---|
[763] | 1519 | void Histo2D::ZeroSliY()
|
---|
| 1520 | {
|
---|
| 1521 | if( lsliy.size() <= 0 ) return;
|
---|
| 1522 | list<bande_slice>::iterator i;
|
---|
| 1523 | for(i = lsliy.begin(); i != lsliy.end(); i++)
|
---|
| 1524 | (*i).H->Zero();
|
---|
| 1525 | }
|
---|
| 1526 |
|
---|
[914] | 1527 | /*!
|
---|
| 1528 | Retourne un pointeur sur la bande equidistante numero `n'
|
---|
| 1529 | selon X.
|
---|
| 1530 | */
|
---|
[763] | 1531 | Histo* Histo2D::HSliX(int n) const
|
---|
| 1532 | {
|
---|
| 1533 | if( lslix.size() <= 0 || n < 0 || n >= (int) lslix.size() ) return NULL;
|
---|
| 1534 | for(list<bande_slice>::const_iterator i = lslix.begin(); i != lslix.end(); i++)
|
---|
| 1535 | if( (*i).num == n ) return (*i).H;
|
---|
| 1536 | return NULL;
|
---|
| 1537 | }
|
---|
| 1538 |
|
---|
[914] | 1539 | /*!
|
---|
| 1540 | Retourne un pointeur sur la bande equidistante numero `n'
|
---|
| 1541 | selon Y.
|
---|
| 1542 | */
|
---|
[763] | 1543 | Histo* Histo2D::HSliY(int n) const
|
---|
| 1544 | {
|
---|
| 1545 | if( lsliy.size() <= 0 || n < 0 || n >= (int) lsliy.size() ) return NULL;
|
---|
| 1546 | for(list<bande_slice>::const_iterator i = lsliy.begin(); i != lsliy.end(); i++)
|
---|
| 1547 | if( (*i).num == n ) return (*i).H;
|
---|
| 1548 | return NULL;
|
---|
| 1549 | }
|
---|
| 1550 |
|
---|
[914] | 1551 | /*!
|
---|
| 1552 | Informations sur les bandes equidistantes.
|
---|
| 1553 | */
|
---|
[763] | 1554 | void Histo2D::ShowSli(int lp)
|
---|
| 1555 | {
|
---|
| 1556 | list<bande_slice>::iterator i;
|
---|
| 1557 | cout << ">>>> Nombre de slice X : " << lslix.size() << endl;
|
---|
| 1558 | if( lp>0 && lslix.size() > 0 )
|
---|
| 1559 | for(i = lslix.begin(); i != lslix.end(); i++) {
|
---|
| 1560 | cout<<" "<<(*i).num<<" de ymin="<<(*i).min<<" a ymax="<<(*i).max;
|
---|
| 1561 | if(lp>1) cout << " H=" << (*i).H;
|
---|
| 1562 | cout << endl;
|
---|
| 1563 | }
|
---|
| 1564 |
|
---|
| 1565 | cout << ">>>> Nombre de slice Y : " << lsliy.size() << endl;
|
---|
| 1566 | if( lp>0 && lsliy.size()>0 )
|
---|
| 1567 | for(i = lsliy.begin(); i != lsliy.end(); i++) {
|
---|
| 1568 | cout<<" "<<(*i).num<<" de xmin="<<(*i).min<<" a xmax="<<(*i).max;
|
---|
| 1569 | if(lp>1) cout << " H=" << (*i).H;
|
---|
| 1570 | cout << endl;
|
---|
| 1571 | }
|
---|
| 1572 | }
|
---|
| 1573 |
|
---|
| 1574 | ///////////////////////////////////////////////////////////
|
---|
| 1575 | // --------------------------------------------------------
|
---|
| 1576 | // Les objets delegues pour la gestion de persistance
|
---|
| 1577 | // --------------------------------------------------------
|
---|
| 1578 | ///////////////////////////////////////////////////////////
|
---|
| 1579 |
|
---|
| 1580 |
|
---|
| 1581 | void ObjFileIO<Histo2D>::ReadSelf(PInPersist& is)
|
---|
| 1582 | {
|
---|
| 1583 | char strg[256];
|
---|
| 1584 |
|
---|
| 1585 | if(dobj==NULL) dobj=new Histo2D;
|
---|
| 1586 | else dobj->Delete();
|
---|
| 1587 |
|
---|
| 1588 | float min,max;
|
---|
| 1589 | int_4 errok, projx, projy, nslix, nsliy, nbanx, nbany;
|
---|
| 1590 |
|
---|
| 1591 | // Lecture entete
|
---|
| 1592 | is.GetLine(strg, 255);
|
---|
| 1593 | is.GetLine(strg, 255);
|
---|
| 1594 | is.GetLine(strg, 255);
|
---|
| 1595 | is.GetLine(strg, 255);
|
---|
| 1596 | is.GetLine(strg, 255);
|
---|
| 1597 | is.GetLine(strg, 255);
|
---|
| 1598 |
|
---|
| 1599 | // Lecture variables de definitions
|
---|
| 1600 | is.Get(dobj->nx);
|
---|
| 1601 | is.Get(dobj->ny);
|
---|
| 1602 | is.Get(dobj->nxy);
|
---|
| 1603 | is.Get(errok);
|
---|
| 1604 | is.Get(dobj->nEntries);
|
---|
| 1605 | is.Get(dobj->nHist);
|
---|
| 1606 |
|
---|
| 1607 | is.Get(dobj->xmin);
|
---|
| 1608 | is.Get(dobj->xmax);
|
---|
| 1609 | is.Get(dobj->ymin);
|
---|
| 1610 | is.Get(dobj->ymax);
|
---|
| 1611 | is.Get(dobj->wbinx);
|
---|
| 1612 | is.Get(dobj->wbiny);
|
---|
| 1613 |
|
---|
| 1614 | is.Get(&(dobj->over[0][0]),9);
|
---|
| 1615 |
|
---|
| 1616 | is.Get(projx);
|
---|
| 1617 | is.Get(projy);
|
---|
| 1618 | is.Get(nslix);
|
---|
| 1619 | is.Get(nsliy);
|
---|
| 1620 | is.Get(nbanx);
|
---|
| 1621 | is.Get(nbany);
|
---|
| 1622 |
|
---|
| 1623 | // Lecture histo2D
|
---|
| 1624 | dobj->data = new float[dobj->nxy];
|
---|
| 1625 | is.GetLine(strg, 255);
|
---|
| 1626 | {for(int j=0;j<dobj->ny;j++) is.Get(dobj->data+j*dobj->nx,dobj->nx);}
|
---|
| 1627 |
|
---|
| 1628 | // Lecture erreurs
|
---|
| 1629 | if(errok) {
|
---|
| 1630 | is.GetLine(strg, 255);
|
---|
| 1631 | dobj->err2 = new double[dobj->nxy];
|
---|
| 1632 | for(int j=0;j<dobj->ny;j++) is.Get(dobj->err2+j*dobj->nx,dobj->nx);
|
---|
| 1633 | }
|
---|
| 1634 |
|
---|
| 1635 | // Lecture des projections
|
---|
| 1636 | if(projx) {
|
---|
| 1637 | is.GetLine(strg, 255);
|
---|
| 1638 | dobj->SetProjX();
|
---|
| 1639 | ObjFileIO<Histo> fio_h(dobj->hprojx);
|
---|
| 1640 | fio_h.Read(is);
|
---|
| 1641 | }
|
---|
| 1642 | if(projy) {
|
---|
| 1643 | is.GetLine(strg, 255);
|
---|
| 1644 | dobj->SetProjY();
|
---|
| 1645 | ObjFileIO<Histo> fio_h(dobj->hprojy);
|
---|
| 1646 | fio_h.Read(is);
|
---|
| 1647 | }
|
---|
| 1648 |
|
---|
| 1649 | // Lecture des slices
|
---|
| 1650 | if(nslix>0) {
|
---|
| 1651 | is.GetLine(strg, 255);
|
---|
| 1652 | dobj->SetSliX(nslix);
|
---|
| 1653 | ASSERT (nslix==dobj->NSliX());
|
---|
| 1654 | for(int j=0;j<dobj->NSliX();j++)
|
---|
| 1655 | {ObjFileIO<Histo> fio_h(dobj->HSliX(j)); fio_h.Read(is);}
|
---|
| 1656 | }
|
---|
| 1657 | if(nsliy>0) {
|
---|
| 1658 | is.GetLine(strg, 255);
|
---|
| 1659 | dobj->SetSliY(nsliy);
|
---|
| 1660 | ASSERT (nsliy==dobj->NSliY());
|
---|
| 1661 | for(int j=0;j<dobj->NSliY();j++)
|
---|
| 1662 | {ObjFileIO<Histo> fio_h(dobj->HSliY(j)); fio_h.Read(is);}
|
---|
| 1663 | }
|
---|
| 1664 |
|
---|
| 1665 | // Lecture des bandes
|
---|
| 1666 | if( nbanx>0 ) {
|
---|
| 1667 | is.GetLine(strg, 255);
|
---|
| 1668 | {for(int j=0; j<nbanx; j++) {
|
---|
| 1669 | is.Get(min); is.Get(max);
|
---|
| 1670 | dobj->SetBandX(min,max);
|
---|
| 1671 | }}
|
---|
| 1672 | ASSERT (nbanx==dobj->NBandX());
|
---|
| 1673 | {for(int j=0; j<dobj->NBandX(); j++) {
|
---|
| 1674 | ObjFileIO<Histo> fio_h(dobj->HBandX(j));
|
---|
| 1675 | fio_h.Read(is);
|
---|
| 1676 | }}
|
---|
| 1677 | }
|
---|
| 1678 | if( nbany>0 ) {
|
---|
| 1679 | is.GetLine(strg, 255);
|
---|
| 1680 | {for(int j=0; j<nbany; j++) {
|
---|
| 1681 | is.Get(min); is.Get(max);
|
---|
| 1682 | dobj->SetBandY(min,max);
|
---|
| 1683 | }}
|
---|
| 1684 | ASSERT (nbany==dobj->NBandY());
|
---|
| 1685 | {for(int j=0; j<dobj->NBandY(); j++) {
|
---|
| 1686 | ObjFileIO<Histo> fio_h(dobj->HBandY(j));
|
---|
| 1687 | fio_h.Read(is);
|
---|
| 1688 | }}
|
---|
| 1689 | }
|
---|
| 1690 |
|
---|
| 1691 | return;
|
---|
| 1692 | }
|
---|
| 1693 |
|
---|
| 1694 | void ObjFileIO<Histo2D>::WriteSelf(POutPersist& os) const
|
---|
| 1695 | {
|
---|
| 1696 | if (dobj == NULL) return;
|
---|
| 1697 | char strg[256];
|
---|
| 1698 |
|
---|
| 1699 | // Que faut-il ecrire?
|
---|
| 1700 | int_4 errok = (dobj->err2) ? 1 : 0;
|
---|
| 1701 | int_4 projx = (dobj->hprojx) ? 1 : 0;
|
---|
| 1702 | int_4 projy = (dobj->hprojy) ? 1 : 0;
|
---|
| 1703 | int_4 nslix = dobj->NSliX();
|
---|
| 1704 | int_4 nsliy = dobj->NSliY();
|
---|
| 1705 | int_4 nbanx = dobj->NBandX();
|
---|
| 1706 | int_4 nbany = dobj->NBandY();
|
---|
| 1707 |
|
---|
| 1708 | // Ecriture entete pour identifier facilement
|
---|
| 1709 | sprintf(strg,"nx=%d ny=%d nxy=%d errok=%1d"
|
---|
| 1710 | ,dobj->nx,dobj->ny,dobj->nxy,errok);
|
---|
| 1711 | os.PutLine(strg);
|
---|
| 1712 | sprintf(strg,"nHist=%g nEntries=%d",dobj->nHist,dobj->nEntries);
|
---|
| 1713 | os.PutLine(strg);
|
---|
| 1714 | sprintf(strg,"wbinx=%g wbiny=%g",dobj->wbinx,dobj->wbiny);
|
---|
| 1715 | os.PutLine(strg);
|
---|
| 1716 | sprintf(strg,"xmin=%g xmax=%g ymin=%g ymax=%g"
|
---|
| 1717 | ,dobj->xmin,dobj->xmax,dobj->ymin,dobj->ymax);
|
---|
| 1718 | os.PutLine(strg);
|
---|
| 1719 | sprintf(strg,"projx/y=%d %d nbandx/y=%d %d nbslix/y=%d %d"
|
---|
| 1720 | ,projx,projy,nbanx,nbany,nslix,nsliy);
|
---|
| 1721 | os.PutLine(strg);
|
---|
| 1722 | sprintf(strg,"over %g %g %g %g %g %g %g %g %g"
|
---|
| 1723 | ,dobj->over[0][0],dobj->over[0][1],dobj->over[0][2]
|
---|
| 1724 | ,dobj->over[1][0],dobj->over[1][1],dobj->over[1][2]
|
---|
| 1725 | ,dobj->over[2][0],dobj->over[2][1],dobj->over[2][2]);
|
---|
| 1726 | os.PutLine(strg);
|
---|
| 1727 |
|
---|
| 1728 | // Ecriture variables de definitions
|
---|
| 1729 | os.Put(dobj->nx);
|
---|
| 1730 | os.Put(dobj->ny);
|
---|
| 1731 | os.Put(dobj->nxy);
|
---|
| 1732 | os.Put(errok);
|
---|
| 1733 | os.Put(dobj->nEntries);
|
---|
| 1734 | os.Put(dobj->nHist);
|
---|
| 1735 |
|
---|
| 1736 | os.Put(dobj->xmin);
|
---|
| 1737 | os.Put(dobj->xmax);
|
---|
| 1738 | os.Put(dobj->ymin);
|
---|
| 1739 | os.Put(dobj->ymax);
|
---|
| 1740 | os.Put(dobj->wbinx);
|
---|
| 1741 | os.Put(dobj->wbiny);
|
---|
| 1742 |
|
---|
| 1743 | os.Put(&(dobj->over[0][0]),9);
|
---|
| 1744 |
|
---|
| 1745 | os.Put(projx);
|
---|
| 1746 | os.Put(projy);
|
---|
| 1747 | os.Put(nslix);
|
---|
| 1748 | os.Put(nsliy);
|
---|
| 1749 | os.Put(nbanx);
|
---|
| 1750 | os.Put(nbany);
|
---|
| 1751 |
|
---|
| 1752 | // Ecriture histo2D
|
---|
| 1753 | sprintf(strg,"Histo2D: Tableau des donnees %d = %d * %d"
|
---|
| 1754 | ,dobj->nxy,dobj->nx,dobj->ny);
|
---|
| 1755 | os.PutLine(strg);
|
---|
| 1756 | {for(int j=0;j<dobj->ny;j++) os.Put(dobj->data+j*dobj->nx,dobj->nx);}
|
---|
| 1757 |
|
---|
| 1758 | // Ecriture erreurs
|
---|
| 1759 | if(errok) {
|
---|
| 1760 | sprintf(strg,"Histo2D: Tableau des erreurs %d = %d * %d"
|
---|
| 1761 | ,dobj->nxy,dobj->nx,dobj->ny);
|
---|
| 1762 | os.PutLine(strg);
|
---|
| 1763 | for(int j=0;j<dobj->ny;j++) os.Put(dobj->err2+j*dobj->nx,dobj->nx);
|
---|
| 1764 | }
|
---|
| 1765 |
|
---|
| 1766 | // Ecriture des projections
|
---|
| 1767 | if(projx) {
|
---|
| 1768 | sprintf(strg,"Histo2D: Projection X");
|
---|
| 1769 | os.PutLine(strg);
|
---|
| 1770 | ObjFileIO<Histo> fio_h(dobj->hprojx); fio_h.Write(os);
|
---|
| 1771 | }
|
---|
| 1772 | if(projy) {
|
---|
| 1773 | sprintf(strg,"Histo2D: Projection Y");
|
---|
| 1774 | os.PutLine(strg);
|
---|
| 1775 | ObjFileIO<Histo> fio_h(dobj->hprojy); fio_h.Write(os);
|
---|
| 1776 | }
|
---|
| 1777 |
|
---|
| 1778 | // Ecriture des slices
|
---|
| 1779 | if(nslix>0) {
|
---|
| 1780 | sprintf(strg,"Histo2D: Slices X %d",nslix);
|
---|
| 1781 | os.PutLine(strg);
|
---|
| 1782 | for(int j=0;j<nslix;j++) {
|
---|
| 1783 | Histo* h = dobj->HSliX(j);
|
---|
| 1784 | ObjFileIO<Histo> fio_h(h); fio_h.Write(os);
|
---|
| 1785 | }
|
---|
| 1786 | }
|
---|
| 1787 | if(nsliy>0) {
|
---|
| 1788 | sprintf(strg,"Histo2D: Slices Y %d",nsliy);
|
---|
| 1789 | os.PutLine(strg);
|
---|
| 1790 | for(int j=0;j<nsliy;j++) {
|
---|
| 1791 | Histo* h = dobj->HSliY(j);
|
---|
| 1792 | ObjFileIO<Histo> fio_h(h); fio_h.Write(os);
|
---|
| 1793 | }
|
---|
| 1794 | }
|
---|
| 1795 |
|
---|
| 1796 | // Ecriture des bandes
|
---|
| 1797 | if( nbanx>0 ) {
|
---|
| 1798 | sprintf(strg,"Histo2D: Bandes X %d",nbanx);
|
---|
| 1799 | os.PutLine(strg);
|
---|
| 1800 | list<Histo2D::bande_slice>::const_iterator it;
|
---|
| 1801 | for(it = dobj->lbandx.begin(); it != dobj->lbandx.end(); it++) {
|
---|
| 1802 | float min = (*it).min; float max = (*it).max;
|
---|
| 1803 | os.Put(min); os.Put(max);
|
---|
| 1804 | }
|
---|
| 1805 | for(it = dobj->lbandx.begin(); it != dobj->lbandx.end(); it++) {
|
---|
| 1806 | Histo* h = (*it).H;
|
---|
| 1807 | ObjFileIO<Histo> fio_h(h); fio_h.Write(os);
|
---|
| 1808 | }
|
---|
| 1809 | }
|
---|
| 1810 | if( nbany>0 ) {
|
---|
| 1811 | sprintf(strg,"Histo2D: Bandes Y %d",nbany);
|
---|
| 1812 | os.PutLine(strg);
|
---|
| 1813 | list<Histo2D::bande_slice>::const_iterator it;
|
---|
| 1814 | for(it = dobj->lbandy.begin(); it != dobj->lbandy.end(); it++) {
|
---|
| 1815 | float min = (*it).min; float max = (*it).max;
|
---|
| 1816 | os.Put(min); os.Put(max);
|
---|
| 1817 | }
|
---|
| 1818 | for(it = dobj->lbandy.begin(); it != dobj->lbandy.end(); it++) {
|
---|
| 1819 | Histo* h = (*it).H;
|
---|
| 1820 | ObjFileIO<Histo> fio_h(h); fio_h.Write(os);
|
---|
| 1821 | }
|
---|
| 1822 | }
|
---|
| 1823 |
|
---|
| 1824 | return;
|
---|
| 1825 | }
|
---|
| 1826 |
|
---|
| 1827 |
|
---|
| 1828 | #ifdef __CXX_PRAGMA_TEMPLATES__
|
---|
| 1829 | #pragma define_template ObjFileIO<Histo2D>
|
---|
| 1830 | #endif
|
---|
| 1831 |
|
---|
| 1832 | #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES)
|
---|
| 1833 | template class ObjFileIO<Histo2D>;
|
---|
| 1834 | #endif
|
---|