00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _BOX_H_
00012 #define _BOX_H_
00013
00014 #ifdef NODEV
00015 #undef NODEV
00016 #endif
00017
00018 #include "SPACE.H"
00019
00020 #ifndef WRAPPER
00021 #include <iostream>
00022
00023 #include "IntVect.H"
00024 #include "Misc.H"
00025 #include "LoHiSide.H"
00026 #include "Vector.H"
00027 #include "SPMD.H"
00028 #include "NamespaceHeader.H"
00029
00030 struct SliceSpec;
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 class IndexType
00042 {
00043 public:
00044
00045
00046
00047
00048
00049 enum CellIndex
00050 {
00051 CELL = 0,
00052 NODE = 1
00053 };
00054
00055
00056
00057
00058
00059
00060 IndexType ();
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074 explicit IndexType (const IntVect& iv);
00075
00076
00077
00078
00079
00080
00081 IndexType& operator= (const IndexType& rhs);
00082
00083
00084
00085
00086
00087
00088 IndexType& operator= (const IntVect& iv);
00089
00090
00091
00092
00093
00094
00095
00096
00097 IndexType (D_DECL6(CellIndex i, CellIndex j, CellIndex k,
00098 CellIndex l, CellIndex m, CellIndex n));
00099
00100
00101
00102
00103
00104
00105 void set (int dir);
00106
00107
00108
00109
00110
00111
00112 void unset (int dir);
00113
00114
00115
00116
00117
00118
00119 bool test (int dir) const;
00120
00121
00122
00123
00124
00125
00126 void setall ();
00127
00128
00129
00130
00131
00132
00133 void clear ();
00134
00135
00136
00137
00138
00139
00140 bool any () const;
00141
00142
00143
00144
00145
00146
00147 bool ok () const;
00148
00149
00150
00151
00152
00153
00154
00155 void flip (int i);
00156
00157
00158
00159
00160
00161
00162 bool operator== (const IndexType& t) const;
00163
00164
00165
00166
00167
00168 bool operator<(const IndexType& t) const;
00169
00170
00171
00172
00173
00174
00175 bool operator!= (const IndexType& t) const;
00176
00177
00178
00179
00180
00181
00182 bool cellCentered () const;
00183
00184
00185
00186
00187
00188
00189 bool nodeCentered () const;
00190
00191
00192
00193
00194
00195
00196 void setType (int dir,
00197 CellIndex t);
00198
00199
00200
00201
00202
00203
00204 CellIndex ixType (int dir) const;
00205
00206
00207
00208
00209
00210
00211 int operator[] (int dir) const;
00212
00213
00214
00215
00216
00217
00218
00219 IntVect ixType () const;
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229 static IndexType TheCellType ();
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239 static IndexType TheNodeType ();
00240
00241
00242
00243
00244
00245
00246 friend std::ostream& operator<< (std::ostream& os,
00247 const IndexType& itype);
00248
00249
00250
00251
00252
00253
00254 friend std::istream& operator>> (std::istream& is,
00255 IndexType& itype);
00256 private:
00257
00258
00259
00260
00261 static unsigned char mask (int k);
00262
00263
00264
00265
00266 unsigned char itype;
00267 };
00268
00269
00270
00271
00272
00273
00274 inline
00275 unsigned char
00276 IndexType::mask (int k)
00277 {
00278 return 1<<k;
00279 }
00280
00281 inline
00282 IndexType::IndexType ()
00283 :
00284 itype(0)
00285 {
00286 }
00287
00288
00289
00290
00291
00292
00293
00294
00295 inline
00296 IndexType& IndexType::operator= (const IndexType& bt)
00297 {
00298 itype = bt.itype;
00299 return *this;
00300 }
00301
00302 inline
00303 IndexType::IndexType (const IntVect& iv)
00304 {
00305 itype = D_TERM6((iv[0]?1:0), | ((iv[1]?1:0)<<1), | ((iv[2]?1:0)<<2),
00306 | ((iv[3]?1:0)<<3), | ((iv[4]?1:0)<<4), | ((iv[5]?1:0)<<5));
00307 }
00308
00309 inline
00310 IndexType& IndexType::operator= (const IntVect& iv)
00311 {
00312 itype = D_TERM6((iv[0]?1:0), | ((iv[1]?1:0)<<1), | ((iv[2]?1:0)<<2),
00313 | ((iv[3]?1:0)<<3), | ((iv[4]?1:0)<<4), | ((iv[5]?1:0)<<5));
00314 return *this;
00315 }
00316
00317 inline
00318 IndexType::IndexType (D_DECL6(CellIndex i, CellIndex j, CellIndex k,
00319 CellIndex l, CellIndex m, CellIndex n))
00320 {
00321 itype = D_TERM6(i, | (j<<1), | (k<<2),
00322 | (l<<3), | (m<<4), | (n<<5));
00323 }
00324
00325 inline
00326 void
00327 IndexType::set (int dir)
00328 {
00329 itype |= mask(dir);
00330 }
00331
00332 inline
00333 void
00334 IndexType::unset (int dir)
00335 {
00336 itype &= ~mask(dir);
00337 }
00338
00339 inline
00340 bool
00341 IndexType::test (int dir) const
00342 {
00343 return (itype & mask(dir)) != 0;
00344 }
00345
00346 inline
00347 void
00348 IndexType::setall ()
00349 {
00350 itype = (1 << CH_SPACEDIM) - 1;
00351 }
00352
00353 inline
00354 void
00355 IndexType::clear ()
00356 {
00357 itype = 0;
00358 }
00359
00360 inline
00361 bool
00362 IndexType::any () const
00363 {
00364 return itype != 0;
00365 }
00366
00367 inline
00368 bool
00369 IndexType::ok () const
00370 {
00371 return itype < (1 << CH_SPACEDIM);
00372 }
00373
00374 inline
00375 void
00376 IndexType::flip (int i)
00377 {
00378 itype ^= mask(i);
00379 }
00380
00381 inline
00382 bool
00383 IndexType::operator== (const IndexType& t) const
00384 {
00385 return t.itype == itype;
00386 }
00387
00388 inline
00389 bool
00390 IndexType::operator< (const IndexType& t) const
00391 {
00392 return itype < t.itype;
00393 }
00394
00395 inline
00396 bool
00397 IndexType::operator!= (const IndexType& t) const
00398 {
00399 return t.itype != itype;
00400 }
00401
00402 inline
00403 bool
00404 IndexType::cellCentered () const
00405 {
00406 return itype == 0;
00407 }
00408
00409 inline
00410 bool
00411 IndexType::nodeCentered () const
00412 {
00413 return itype == (1<<CH_SPACEDIM)-1;
00414 }
00415
00416 inline
00417 void
00418 IndexType::setType (int dir,
00419 CellIndex t)
00420 {
00421 t == CELL ? unset(dir) : set(dir);
00422 }
00423
00424 inline
00425 IndexType::CellIndex
00426 IndexType::ixType (int dir) const
00427 {
00428 return (CellIndex) ((itype & (1<<dir)) >> dir);
00429 }
00430
00431 inline
00432 int
00433 IndexType::operator[] (int dir) const
00434 {
00435 return test(dir);
00436 }
00437
00438 inline
00439 IntVect
00440 IndexType::ixType () const
00441 {
00442 return IntVect(D_DECL6(itype&1, (itype>>1)&1, (itype>>2)&1,
00443 (itype>>3)&1, (itype>>4)&1, (itype>>5)&1));
00444 }
00445
00446 #endif
00447
00448
00449
00450
00451
00452
00453
00454
00455
00456
00457
00458
00459
00460
00461
00462
00463
00464
00465 class Box
00466 {
00467 public:
00468
00469
00470
00471
00472
00473
00474
00475
00476 Box ();
00477
00478
00479
00480
00481
00482
00483
00484
00485
00486
00487
00488
00489
00490
00491
00492 Box (const IntVect& small,
00493 const IntVect& big);
00494
00495
00496
00497
00498
00499
00500
00501 void define(const IntVect& small, const IntVect& big);
00502
00503
00504
00505
00506
00507
00508
00509 Box (const IntVect& small,
00510 const int* vec_len);
00511
00512
00513
00514
00515
00516
00517
00518
00519
00520 Box (const IntVect& small,
00521 const IntVect& big,
00522 const IntVect& typ);
00523
00524
00525
00526
00527
00528
00529
00530
00531
00532 void define(const IntVect& small,
00533 const IntVect& big,
00534 const IntVect& typ);
00535
00536
00537
00538
00539
00540
00541
00542
00543 Box (const IntVect& small,
00544 const IntVect& big,
00545 const IndexType& t);
00546
00547
00548
00549
00550
00551
00552
00553
00554 void define(const IntVect& small,
00555 const IntVect& big,
00556 const IndexType& t);
00557
00558
00559
00560
00561
00562
00563
00564
00565 void define(const Box& b);
00566
00567 Box copy() const
00568 {
00569 return *this;
00570 }
00571
00572
00573
00574
00575
00576
00577
00578
00579 const IntVect& smallEnd () const;
00580
00581
00582
00583
00584
00585
00586 IntVect sideEnd(Side::LoHiSide a_side) const;
00587
00588
00589
00590
00591
00592
00593
00594
00595 int smallEnd (int dir) const;
00596
00597
00598
00599
00600
00601
00602 const IntVect& bigEnd () const;
00603
00604
00605
00606
00607
00608
00609
00610
00611 int bigEnd (int dir) const;
00612
00613
00614
00615
00616
00617
00618
00619
00620 const int* loVect () const;
00621
00622
00623
00624
00625
00626
00627
00628
00629 const int* hiVect () const;
00630
00631
00632
00633
00634
00635
00636
00637
00638 const int* getVect () const;
00639
00640
00641
00642
00643
00644
00645
00646
00647 long index (const IntVect& v) const;
00648
00649
00650
00651
00652
00653
00654
00655
00656 IndexType ixType () const;
00657
00658
00659
00660
00661
00662
00663 IntVect type () const;
00664
00665
00666
00667
00668
00669
00670
00671
00672 IndexType::CellIndex type (int dir) const;
00673
00674
00675
00676
00677
00678
00679
00680
00681
00682 inline
00683 IntVect size () const;
00684
00685
00686
00687
00688
00689
00690
00691
00692 int size (int dir) const;
00693
00694
00695
00696
00697
00698
00699
00700
00701 size_t numPts () const;
00702
00703
00704
00705
00706
00707
00708
00709
00710 size_t volume () const;
00711
00712
00713
00714
00715
00716
00717
00718
00719 int longside (int& dir) const;
00720
00721
00722
00723
00724
00725
00726 int longside () const;
00727
00728
00729
00730
00731
00732
00733
00734
00735 int shortside (int& dir) const;
00736
00737
00738
00739
00740
00741
00742 int shortside () const;
00743
00744
00745
00746
00747
00748
00749
00750
00751 bool isEmpty () const;
00752
00753
00754
00755
00756
00757
00758 bool ok() const;
00759
00760
00761
00762
00763
00764
00765
00766
00767 bool contains (const IntVect& p) const;
00768
00769
00770
00771
00772
00773
00774
00775
00776 bool contains (const Box& b) const;
00777
00778
00779
00780
00781
00782
00783
00784
00785 bool intersects (const Box& b) const;
00786
00787
00788
00789
00790
00791
00792
00793
00794
00795
00796 bool intersectsNotEmpty (const Box& b) const;
00797
00798
00799
00800
00801
00802
00803
00804 bool sameSize (const Box& b) const;
00805
00806
00807
00808
00809
00810
00811 bool sameType (const Box &b) const;
00812
00813
00814
00815
00816
00817
00818
00819 bool operator== (const Box& b) const;
00820
00821 bool eq(const Box& b) const;
00822
00823
00824
00825
00826
00827 bool operator!= (const Box& b) const;
00828
00829 bool neq(const Box& b) const;
00830
00831
00832
00833
00834
00835
00836 bool cellCentered () const;
00837
00838
00839
00840
00841
00842
00843
00844
00845
00846
00847
00848 bool operator < (const Box& rhs) const;
00849
00850 bool lt(const Box& rhs) const;
00851
00852
00853
00854
00855
00856
00857
00858
00859
00860
00861
00862
00863
00864
00865
00866
00867
00868 Box& setSmall (const IntVect& sm);
00869
00870
00871
00872
00873
00874
00875
00876
00877
00878 Box& setSmall (int dir,
00879 int sm_index);
00880
00881
00882
00883
00884
00885
00886
00887
00888 Box& setBig (const IntVect& bg);
00889
00890
00891
00892
00893
00894
00895
00896
00897
00898 Box& setBig (int dir,
00899 int bg_index);
00900
00901
00902
00903
00904
00905
00906
00907 Box& setRange (int dir,
00908 int sm_index,
00909 int n_cells = 1);
00910
00911
00912
00913
00914
00915
00916
00917
00918
00919
00920
00921
00922
00923
00924
00925 Box& convert (IndexType typ);
00926
00927
00928
00929
00930
00931
00932
00933
00934
00935
00936
00937 Box& convert (const IntVect& typ);
00938
00939
00940
00941
00942
00943
00944
00945
00946
00947
00948
00949
00950
00951
00952 Box& convert (int dir,
00953 IndexType::CellIndex typ);
00954
00955
00956
00957
00958
00959
00960
00961
00962
00963 Box& surroundingNodes ();
00964
00965
00966
00967
00968
00969
00970
00971
00972
00973
00974 Box& surroundingNodes (int dir);
00975
00976 Box& surroundingNodes_int(int dir);
00977
00978
00979
00980
00981
00982
00983
00984
00985
00986
00987 friend Box surroundingNodes (const Box& b,
00988 int dir);
00989
00990
00991
00992
00993
00994
00995
00996
00997
00998
00999 friend Box surroundingNodes (const Box& b);
01000
01001
01002
01003
01004
01005
01006
01007
01008
01009 Box& enclosedCells ();
01010
01011
01012
01013
01014
01015
01016
01017
01018
01019
01020 Box& enclosedCells (int dir);
01021
01022 Box& enclosedCells_int (int dir);
01023
01024
01025
01026
01027
01028
01029
01030
01031
01032
01033
01034 friend Box enclosedCells (const Box& b,
01035 int dir);
01036
01037
01038
01039
01040
01041
01042
01043
01044
01045
01046 friend Box enclosedCells (const Box& b);
01047
01048
01049
01050
01051
01052
01053
01054
01055
01056
01057
01058 Box& shift (int dir,
01059 int nzones);
01060
01061
01062
01063
01064
01065
01066
01067
01068 Box& shift (const IntVect& iv);
01069
01070 Box& shift_intvect (const IntVect& iv);
01071
01072
01073
01074
01075
01076
01077
01078
01079
01080
01081
01082
01083
01084
01085 Box& shiftHalf (int dir,
01086 int num_halfs);
01087
01088
01089 void convertOldToNew(const IntVect& a_permutation,
01090 const IntVect& a_sign,
01091 const IntVect& a_translation);
01092
01093
01094
01095 void convertNewToOld(const IntVect& a_permutation,
01096 const IntVect& a_sign,
01097 const IntVect& a_translation);
01098
01099
01100
01101
01102
01103
01104
01105
01106 Box& shiftHalf (const IntVect& iv);
01107 Box& shiftHalf_intvect (const IntVect& iv);
01108
01109
01110
01111
01112
01113
01114
01115 Box& operator+= (const IntVect& v);
01116
01117
01118
01119
01120
01121
01122
01123 Box operator+ (const IntVect& v) const;
01124
01125
01126
01127
01128
01129
01130
01131 Box& operator-= (const IntVect& v);
01132
01133
01134
01135
01136
01137
01138
01139 Box operator- (const IntVect& v) const;
01140
01141
01142
01143
01144 friend Box bdryBox(const Box& b,
01145 int dir,
01146 Side::LoHiSide a_sd,
01147 int len);
01148
01149
01150
01151
01152
01153
01154
01155
01156
01157
01158 friend Box bdryLo (const Box& b,
01159 int dir,
01160 int len);
01161
01162
01163
01164
01165
01166
01167
01168
01169
01170
01171 friend Box bdryHi (const Box& b,
01172 int dir,
01173 int len);
01174
01175
01176
01177
01178
01179
01180
01181
01182
01183
01184
01185
01186
01187
01188
01189
01190
01191
01192
01193
01194
01195
01196
01197
01198
01199 friend Box adjCellLo (const Box& b,
01200 int dir,
01201 int len);
01202
01203
01204
01205
01206
01207
01208
01209
01210
01211
01212
01213
01214
01215
01216
01217
01218
01219
01220
01221
01222
01223
01224
01225
01226
01227 friend Box adjCellHi (const Box& b,
01228 int dir,
01229 int len);
01230
01231
01232
01233
01234
01235
01236
01237
01238
01239
01240
01241 Box operator& (const Box&) const;
01242
01243
01244
01245
01246
01247
01248
01249
01250 Box& operator&= (const Box&);
01251
01252
01253 friend Box adjCellBox (const Box& b,
01254 int dir,
01255 Side::LoHiSide a_side,
01256 int len);
01257
01258
01259
01260
01261
01262
01263 Box& minBox (const Box& b);
01264
01265
01266
01267
01268
01269
01270
01271 friend Box minBox (const Box& b1,
01272 const Box& b2);
01273
01274
01275
01276
01277
01278
01279
01280
01281
01282
01283
01284
01285 Box& grow (int i);
01286
01287
01288
01289
01290
01291
01292
01293
01294
01295
01296 friend Box grow (const Box& b,
01297 int i);
01298
01299
01300
01301
01302
01303
01304
01305
01306
01307
01308 Box& grow (const IntVect& v);
01309
01310
01311
01312
01313
01314
01315
01316
01317
01318
01319 friend Box grow (const Box& b,
01320 const IntVect& v);
01321
01322
01323
01324
01325
01326
01327
01328
01329
01330
01331
01332 Box& grow (int idir,
01333 int n_cell);
01334
01335
01336
01337
01338
01339
01340
01341
01342
01343
01344
01345 Box& growLo (int idir,
01346 int n_cell=1);
01347
01348
01349
01350
01351
01352
01353 Box& growDir (int a_idir,
01354 const Side::LoHiSide& a_sd,
01355 int a_cell);
01356
01357
01358
01359
01360
01361
01362
01363
01364
01365
01366
01367 Box& growHi (int idir,
01368 int n_cell=1);
01369
01370
01371
01372
01373
01374
01375
01376
01377
01378
01379
01380
01381
01382
01383
01384 Box& refine (int refinement_ratio);
01385
01386
01387
01388
01389
01390
01391
01392
01393
01394
01395
01396
01397
01398
01399 friend Box refine (const Box& b,
01400 int refinement_ratio);
01401
01402
01403
01404
01405
01406
01407
01408
01409
01410
01411
01412
01413
01414 Box& refine (const IntVect& refinement_ratio);
01415
01416
01417
01418
01419
01420
01421
01422
01423
01424
01425
01426
01427
01428
01429 friend Box refine (const Box& b,
01430 const IntVect& refinement_ratio);
01431
01432
01433
01434
01435
01436
01437 bool coarsenable(int refrat) const
01438 {
01439 Box test = *this;
01440 test.coarsen(refrat);
01441 test.refine(refrat);
01442 return (test==*this);
01443 }
01444
01445
01446
01447
01448
01449
01450
01451
01452
01453
01454
01455
01456
01457
01458
01459
01460
01461 Box& coarsen (int refinement_ratio);
01462
01463
01464
01465
01466
01467
01468
01469
01470
01471
01472
01473
01474
01475
01476
01477
01478
01479 friend Box coarsen (const Box& b,
01480 int refinement_ratio);
01481
01482
01483
01484
01485
01486
01487
01488
01489
01490
01491
01492
01493
01494
01495
01496
01497 Box& coarsen (const IntVect& refinement_ratio);
01498
01499
01500
01501
01502
01503
01504
01505
01506
01507
01508
01509
01510
01511
01512
01513
01514
01515 friend Box coarsen (const Box& b,
01516 const IntVect& refinement_ratio);
01517
01518
01519
01520
01521
01522
01523 void next (IntVect &) const;
01524
01525
01526
01527
01528
01529
01530 void next (IntVect& p,
01531 const int* shv) const;
01532
01533
01534
01535
01536
01537
01538
01539
01540
01541
01542
01543
01544
01545
01546
01547
01548
01549 Box chop (int dir,
01550 int chop_pnt);
01551
01552
01553
01554
01555
01556
01557
01558
01559
01560
01561
01562
01563
01564
01565 void degenerate( Box& a_to, const SliceSpec& a_sliceSpec,
01566 bool* a_outofbounds=0 ) const;
01567
01568
01569
01570
01571
01572
01573
01574
01575 friend std::ostream& operator<< (std::ostream& os,
01576 const Box& bx);
01577
01578
01579
01580
01581
01582
01583 friend std::istream& operator>> (std::istream& os,
01584 Box& bx);
01585
01586
01587
01588
01589
01590 void p() const;
01591
01592
01593
01594
01595
01596
01597
01598 void dumpOn (std::ostream& strm) const;
01599
01600
01601
01602
01603
01604
01605
01606
01607
01608
01609
01610
01611
01612
01613
01614
01615
01616
01617
01618
01619
01620
01621 void computeBoxLen ();
01622 void computeBoxLenNotEmpty();
01623
01624
01625 static void setTempestOutputFormat( bool );
01626
01627 protected:
01628 friend class HDF5Handle;
01629
01630 IntVect smallend;
01631 IntVect bigend;
01632
01633 IndexType btype;
01634
01635 static bool s_tempestOutputFormat;
01636 };
01637
01638 #include "NamespaceFooter.H"
01639
01640 #include "BaseNamespaceHeader.H"
01641
01642 #include "NamespaceVar.H"
01643
01644
01645 template < >
01646 int linearSize(const CH_XDIR::Box& a_input);
01647
01648
01649 template < >
01650 void linearIn(CH_XDIR::Box& a_outputT, const void* const a_inBuf);
01651
01652
01653 template < >
01654 void linearOut(void* const a_outBuf, const CH_XDIR::Box& a_inputT);
01655
01656
01657
01658 template < >
01659 int linearSize(const Vector<CH_XDIR::Box>& a_input);
01660 template < >
01661 void linearIn(Vector<CH_XDIR::Box>& a_outputT, const void* const inBuf);
01662 template < >
01663 void linearOut(void* const a_outBuf, const Vector<CH_XDIR::Box>& a_inputT);
01664
01665
01666 template < >
01667 int linearSize(const Vector<Vector<CH_XDIR::Box> >& a_input);
01668 template < >
01669 void linearIn(Vector<Vector<CH_XDIR::Box> >& a_outputT, const void* const inBuf);
01670 template < >
01671 void linearOut(void* const a_outBuf, const Vector<Vector<CH_XDIR::Box> >& a_inputT);
01672
01673 #include "BaseNamespaceFooter.H"
01674 #include "NamespaceHeader.H"
01675
01676
01677 Box surroundingNodes (const Box& b,
01678 int dir);
01679 Box surroundingNodes (const Box& b);
01680 Box enclosedCells (const Box& b,
01681 int dir);
01682 Box enclosedCells (const Box& b);
01683 Box bdryBox(const Box& b,
01684 int dir,
01685 Side::LoHiSide a_sd,
01686 int len=1);
01687 Box bdryLo (const Box& b,
01688 int dir,
01689 int len=1);
01690 Box bdryHi (const Box& b,
01691 int dir,
01692 int len=1);
01693 Box adjCellLo (const Box& b,
01694 int dir,
01695 int len=1);
01696 Box adjCellHi (const Box& b,
01697 int dir,
01698 int len=1);
01699 Box minBox (const Box& b1,
01700 const Box& b2);
01701 Box coarsen (const Box& b,
01702 const IntVect& refinement_ratio);
01703 Box coarsen (const Box& b,
01704 int refinement_ratio);
01705 Box refine (const Box& b,
01706 const IntVect& refinement_ratio);
01707 Box refine (const Box& b,
01708 int refinement_ratio);
01709
01710
01711
01712
01713
01714 #ifndef WRAPPER
01715
01716
01717
01718
01719
01720
01721
01722
01723
01724
01725
01726
01727
01728
01729
01730
01731
01732
01733
01734
01735
01736
01737
01738
01739
01740 inline
01741 IntVect
01742 Box::sideEnd(Side::LoHiSide a_side) const
01743 {
01744 IntVect retval;
01745 if (a_side == Side::Lo)
01746 retval = smallEnd();
01747 else
01748 retval = bigEnd();
01749 return retval;
01750 }
01751
01752 inline
01753 const IntVect&
01754 Box::smallEnd () const
01755 {
01756 return smallend;
01757 }
01758
01759 inline
01760 int
01761 Box::smallEnd (int dir) const
01762 {
01763 return smallend[dir];
01764 }
01765
01766 inline
01767 const IntVect&
01768 Box::bigEnd () const
01769 {
01770 return bigend;
01771 }
01772
01773 inline
01774 int
01775 Box::bigEnd (int dir) const
01776 {
01777 return bigend[dir];
01778 }
01779
01780 inline
01781 IndexType
01782 Box::ixType () const
01783 {
01784 return btype;
01785 }
01786
01787 inline
01788 IntVect
01789 Box::type () const
01790 {
01791 return btype.ixType();
01792 }
01793
01794 inline
01795 IndexType::CellIndex
01796 Box::type (int dir) const
01797 {
01798 return btype.ixType(dir);
01799 }
01800
01801 inline
01802 IntVect
01803 Box::size () const
01804 {
01805 return IntVect(D_DECL6(bigend[0]-smallend[0]+1,
01806 bigend[1]-smallend[1]+1,
01807 bigend[2]-smallend[2]+1,
01808 bigend[3]-smallend[3]+1,
01809 bigend[4]-smallend[4]+1,
01810 bigend[5]-smallend[5]+1));
01811 }
01812
01813 inline
01814 int
01815 Box::size (int dir) const
01816 {
01817
01818 return bigend[dir]-smallend[dir]+1;
01819 }
01820
01821 inline
01822 const int*
01823 Box::loVect () const
01824 {
01825 return smallend.getVect();
01826 }
01827
01828 inline
01829 const int*
01830 Box::hiVect () const
01831 {
01832 return bigend.getVect();
01833 }
01834
01835 inline
01836 const int*
01837 Box::getVect () const
01838 {
01839 return smallend.getVect();
01840 }
01841
01842
01843
01844 inline
01845 bool
01846 Box::isEmpty () const
01847 {
01848
01849 return D_TERM6((bigend[0] < smallend[0]),
01850 || (bigend[1] < smallend[1]),
01851 || (bigend[2] < smallend[2]),
01852 || (bigend[3] < smallend[3]),
01853 || (bigend[4] < smallend[4]),
01854 || (bigend[5] < smallend[5]) );
01855 }
01856
01857 inline
01858 bool
01859 Box::ok () const
01860 {
01861
01862
01863
01864
01865
01866 return (bigend >= smallend);
01867 }
01868
01869 inline
01870 bool
01871 Box::contains (const IntVect& p) const
01872 {
01873
01874
01875 return (p >= smallend && p <= bigend);
01876 }
01877
01878 inline
01879 bool
01880 Box::sameType (const Box &b) const
01881 {
01882 return btype == b.btype;
01883 }
01884
01885 inline
01886 bool
01887 Box::contains (const Box& b) const
01888 {
01889 CH_assert(sameType(b));
01890 return ( b.isEmpty() ||
01891 (!isEmpty() && b.smallend >= smallend && b.bigend <= bigend) );
01892 }
01893
01894 inline
01895 bool
01896 Box::sameSize (const Box& b) const
01897 {
01898 CH_assert(sameType(b));
01899 return D_TERM6(bigend[0] -smallend[0] == b.bigend[0]-b.smallend[0],
01900 && bigend[1] -smallend[1] == b.bigend[1]-b.smallend[1],
01901 && bigend[2] -smallend[2] == b.bigend[2]-b.smallend[2],
01902 && bigend[3] -smallend[3] == b.bigend[3]-b.smallend[3],
01903 && bigend[4] -smallend[4] == b.bigend[4]-b.smallend[4],
01904 && bigend[5] -smallend[5] == b.bigend[5]-b.smallend[5]);
01905 }
01906
01907 inline
01908 bool
01909 Box::operator== (const Box& b) const
01910 {
01911 return smallend == b.smallend && bigend == b.bigend && b.btype == btype;
01912 }
01913
01914 inline
01915 bool
01916 Box::operator!= (const Box& b) const
01917 {
01918 return !operator==(b);
01919 }
01920
01921 inline
01922 bool
01923 Box::cellCentered () const
01924 {
01925 return !btype.any();
01926 }
01927
01928
01929 inline
01930 long
01931 Box::index (const IntVect& v) const
01932 {
01933 long result = v.vect[0]-smallend.vect[0];
01934 #if CH_SPACEDIM == 1
01935
01936 #elif CH_SPACEDIM==2
01937 int len0=(bigend[0]-smallend[0]+1);
01938 result += len0*(v.vect[1]-smallend.vect[1]);
01939 #elif CH_SPACEDIM==3
01940 long int len0=(bigend[0]-smallend[0]+1);
01941 long int len1=(bigend[1]-smallend[1]+1);
01942 long int dif1= v.vect[1]-smallend.vect[1];
01943 long int dif2= v.vect[2]-smallend.vect[2];
01944 result += len0*(dif1
01945 + dif2*len1);
01946 #elif CH_SPACEDIM==4
01947 int len0=(bigend[0]-smallend[0]+1);
01948 int len1=(bigend[1]-smallend[1]+1);
01949 int len2=(bigend[2]-smallend[2]+1);
01950 result += len0*((v.vect[1]-smallend.vect[1])
01951 +len1*((v.vect[2]-smallend.vect[2])
01952 +len2*(v.vect[3]-smallend[3])));
01953 #elif CH_SPACEDIM==5
01954 int len0=(bigend[0]-smallend[0]+1);
01955 int len1=(bigend[1]-smallend[1]+1);
01956 int len2=(bigend[2]-smallend[2]+1);
01957 int len3=(bigend[3]-smallend[3]+1);
01958 result += len0*(v.vect[1]-smallend.vect[1]
01959 +len1*(v.vect[2]-smallend.vect[2]
01960 +len2*(v.vect[3]-smallend[3]
01961 +len3*(v.vect[4]-smallend[4]))));
01962 #elif CH_SPACEDIM==6
01963 int len0=(bigend[0]-smallend[0]+1);
01964 int len1=(bigend[1]-smallend[1]+1);
01965 int len2=(bigend[2]-smallend[2]+1);
01966 int len3=(bigend[3]-smallend[3]+1);
01967 int len4=(bigend[4]-smallend[4]+1);
01968 result += len0*(v.vect[1]-smallend.vect[1]
01969 +len1*(v.vect[2]-smallend.vect[2]
01970 +len2*(v.vect[3]-smallend[3]
01971 +len3*(v.vect[4]-smallend[4]
01972 +len4*(v.vect[5]-smallend[5])))));
01973
01974 #else
01975 DIM > 6 undefined!
01976 #endif
01977 return result;
01978 }
01979
01980 inline
01981 void
01982 Box::computeBoxLen ()
01983 {
01984
01985
01986
01987
01988
01989
01990
01991
01992
01993
01994 }
01995
01996 inline
01997 void
01998 Box::computeBoxLenNotEmpty()
01999 {
02000
02001
02002
02003 }
02004
02005 inline
02006 Box&
02007 Box::setSmall (const IntVect& sm)
02008 {
02009 CH_assert (sm <= bigend);
02010
02011 smallend = sm;
02012 computeBoxLen();
02013 return *this;
02014 }
02015
02016 inline
02017 Box&
02018 Box::setSmall (int dir,
02019 int sm_index)
02020 {
02021 CH_assert (sm_index <= bigend[dir]);
02022
02023 smallend.setVal(dir,sm_index);
02024 computeBoxLen();
02025 return *this;
02026 }
02027
02028 inline
02029 Box&
02030 Box::setBig (const IntVect& bg)
02031 {
02032 CH_assert (bg >= smallend);
02033
02034 bigend = bg;
02035 computeBoxLen();
02036 return *this;
02037 }
02038
02039 inline
02040 Box&
02041 Box::setBig (int dir,
02042 int bg_index)
02043 {
02044 CH_assert (bg_index >= smallend[dir]);
02045
02046 bigend.setVal(dir,bg_index);
02047 computeBoxLen();
02048 return *this;
02049 }
02050
02051 inline
02052 Box&
02053 Box::setRange (int dir,
02054 int sm_index,
02055 int n_cells)
02056 {
02057 CH_assert (n_cells > 0);
02058
02059 smallend.setVal(dir,sm_index);
02060 bigend.setVal(dir,sm_index+n_cells-1);
02061 computeBoxLen();
02062 return *this;
02063 }
02064
02065 inline
02066 Box&
02067 Box::shift (int dir,
02068 int nzones)
02069 {
02070 if (!isEmpty())
02071 {
02072 smallend.shift(dir,nzones);
02073 bigend.shift(dir,nzones);
02074 }
02075 return *this;
02076 }
02077
02078 inline
02079 Box&
02080 Box::shift (const IntVect& iv)
02081 {
02082 if (!isEmpty())
02083 {
02084 smallend.shift(iv);
02085 bigend.shift(iv);
02086 }
02087 return *this;
02088 }
02089
02090 inline
02091 Box&
02092 Box::convert (const IntVect& typ)
02093 {
02094 CH_assert(typ >= IntVect::Zero && typ <= IntVect::Unit);
02095 if (!isEmpty())
02096 {
02097 IntVect shft(typ - btype.ixType());
02098 bigend += shft;
02099 }
02100 btype = IndexType(typ);
02101 computeBoxLen();
02102 return *this;
02103 }
02104
02105 inline
02106 Box&
02107 Box::surroundingNodes (int dir)
02108 {
02109 if (!(btype[dir]))
02110 {
02111 if (!isEmpty())
02112 {
02113 bigend.shift(dir,1);
02114 }
02115
02116
02117
02118 btype.set(dir);
02119 computeBoxLen();
02120 }
02121 return *this;
02122 }
02123
02124 inline
02125 Box&
02126 Box::enclosedCells (int dir)
02127 {
02128 if (btype[dir])
02129 {
02130 if (!isEmpty())
02131 {
02132 bigend.shift(dir,-1);
02133 }
02134
02135
02136
02137 btype.unset(dir);
02138 computeBoxLen();
02139 }
02140 return *this;
02141 }
02142
02143 inline
02144 Box
02145 surroundingNodes (const Box& b,
02146 int dir)
02147 {
02148 Box bx(b);
02149 return bx.surroundingNodes(dir);
02150 }
02151
02152 inline
02153 Box
02154 surroundingNodes (const Box& b)
02155 {
02156 Box bx(b);
02157 return bx.surroundingNodes();
02158 }
02159
02160 inline
02161 Box
02162 enclosedCells (const Box& b,
02163 int dir)
02164 {
02165 Box bx(b);
02166 return bx.enclosedCells(dir);
02167 }
02168
02169 inline
02170 Box
02171 enclosedCells (const Box& b)
02172 {
02173 Box bx(b);
02174 return bx.enclosedCells();
02175 }
02176
02177 inline
02178 Box&
02179 Box::operator+= (const IntVect& v)
02180 {
02181 if (!isEmpty())
02182 {
02183 smallend += v;
02184 bigend += v;
02185 }
02186 return *this;
02187 }
02188
02189 inline
02190 Box
02191 Box::operator+ (const IntVect& v) const
02192 {
02193 if (isEmpty())
02194 {
02195 return(Box().convert(btype));
02196 }
02197 else
02198 {
02199 IntVect small(smallend);
02200 small += v;
02201 IntVect big(bigend);
02202 big += v;
02203 return Box(small,big,btype);
02204 }
02205 }
02206
02207 inline
02208 Box&
02209 Box::operator-= (const IntVect& v)
02210 {
02211 if (!isEmpty())
02212 {
02213 smallend -= v;
02214 bigend -= v;
02215 }
02216 return *this;
02217 }
02218
02219 inline
02220 bool
02221 Box::operator < (const Box& rhs) const
02222 {
02223 if (smallend == rhs.smallend) return bigend.lexLT(rhs.bigend);
02224 return(!isEmpty() && (rhs.isEmpty() || smallend.lexLT(rhs.smallend)));
02225 }
02226
02227 inline
02228 Box
02229 Box::operator- (const IntVect& v) const
02230 {
02231 if (isEmpty())
02232 {
02233 return(Box().convert(btype));
02234 }
02235 else
02236 {
02237 IntVect small = smallend;
02238 small -= v;
02239 IntVect big = bigend;
02240 big -= v;
02241 return Box(small,big,btype);
02242 }
02243 }
02244
02245 inline
02246 Box&
02247 Box::grow (int i)
02248 {
02249 if (!isEmpty())
02250 {
02251 smallend.diagShift(-i);
02252 bigend.diagShift(i);
02253 if (!(bigend >= smallend)) *this = Box().convert(btype);
02254 computeBoxLen();
02255 }
02256 return *this;
02257 }
02258
02259 inline
02260 Box
02261 grow (const Box& b,
02262 int i)
02263 {
02264 if (b.isEmpty())
02265 {
02266 return Box().convert(b.btype);
02267 }
02268
02269 IntVect small = diagShift(b.smallend,-i);
02270 IntVect big = diagShift(b.bigend,i);
02271 if (!(big >= small))
02272 {
02273 return Box().convert(b.btype);
02274 }
02275 return Box(small,big,b.btype);
02276 }
02277
02278 inline
02279 Box&
02280 Box::grow (const IntVect& v)
02281 {
02282 if (!isEmpty())
02283 {
02284 smallend -= v;
02285 bigend += v;
02286 if (!(bigend >= smallend)) *this = Box().convert(btype);
02287 computeBoxLen();
02288 }
02289 return *this;
02290 }
02291
02292 inline
02293 Box
02294 grow (const Box& b,
02295 const IntVect& v)
02296 {
02297 if (b.isEmpty())
02298 {
02299 return Box().convert(b.btype);
02300 }
02301 else
02302 {
02303 IntVect small = b.smallend - v;
02304 IntVect big = b.bigend + v;
02305 if (!(big >= small))
02306 {
02307 return Box().convert(b.btype);
02308 }
02309 else
02310 {
02311 return Box(small,big,b.btype);
02312 }
02313 }
02314 }
02315
02316 inline
02317 Box&
02318 Box::grow (int idir,
02319 int n_cell)
02320 {
02321 if (!isEmpty())
02322 {
02323 smallend.shift(idir, -n_cell);
02324 bigend.shift(idir, n_cell);
02325 if (!(bigend >= smallend)) *this = Box().convert(btype);
02326 computeBoxLen();
02327 }
02328 return *this;
02329 }
02330
02331 inline
02332 Box&
02333 Box::growLo (int idir,
02334 int n_cell)
02335 {
02336 if (!isEmpty())
02337 {
02338 smallend.shift(idir, -n_cell);
02339 if (!(bigend >= smallend)) *this = Box().convert(btype);
02340 computeBoxLen();
02341 }
02342 return *this;
02343 }
02344
02345 inline
02346 Box&
02347 Box::growDir (int idir,
02348 const Side::LoHiSide& a_sd,
02349 int n_cell)
02350 {
02351 if (a_sd == Side::Lo)
02352 {
02353 growLo(idir, n_cell);
02354 }
02355 else
02356 {
02357 growHi(idir, n_cell);
02358 }
02359 return *this;
02360 }
02361
02362 inline
02363 Box&
02364 Box::growHi (int idir,
02365 int n_cell)
02366 {
02367 if (!isEmpty())
02368 {
02369 bigend.shift(idir,n_cell);
02370 if (!(bigend >= smallend)) *this = Box().convert(btype);
02371 computeBoxLen();
02372 }
02373 return *this;
02374 }
02375
02376 inline
02377 Box
02378 Box::operator& (const Box& rhs) const
02379 {
02380 Box lhs(*this);
02381 return lhs &= rhs;
02382 }
02383
02384 #endif
02385
02386 #include "NamespaceFooter.H"
02387 #endif