This file is indexed.

/usr/share/doc/libhealpix-java/api/healpix/essentials/HealpixBase.html is in libhealpix-java-doc 3.31-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html>
<head>
<!-- Generated by javadoc -->
<title>HealpixBase</title>
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
    try {
        if (location.href.indexOf('is-external=true') == -1) {
            parent.document.title="HealpixBase";
        }
    }
    catch(err) {
    }
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":9,"i11":9,"i12":9,"i13":9,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../healpix/essentials/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../healpix/essentials/Fxyf.html" title="class in healpix.essentials"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?healpix/essentials/HealpixBase.html" target="_top">Frames</a></li>
<li><a href="HealpixBase.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">healpix.essentials</div>
<h2 title="Class HealpixBase" class="title">Class HealpixBase</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="../../healpix/essentials/HealpixTables.html" title="class in healpix.essentials">healpix.essentials.HealpixTables</a></li>
<li>
<ul class="inheritance">
<li>healpix.essentials.HealpixBase</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="/usr/share/doc/default-jdk-doc/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd>
</dl>
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../healpix/essentials/HealpixMapDouble.html" title="class in healpix.essentials">HealpixMapDouble</a>, <a href="../../healpix/essentials/HealpixMapFloat.html" title="class in healpix.essentials">HealpixMapFloat</a>, <a href="../../healpix/essentials/HealpixProc.html" title="class in healpix.essentials">HealpixProc</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">HealpixBase</span>
extends <a href="../../healpix/essentials/HealpixTables.html" title="class in healpix.essentials">HealpixTables</a></pre>
<div class="block">Basic opersations related to the HEALPix pixelisation.
    This class is conceptually very similar the the Healpix_Base class
    of Healpix_cxx. It supports the NESTED scheme for nside parameters which are
    powers of 2, and the RING scheme for arbitrary positive nside parameters.
    The maximum supported nside parameter is 2^29.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../serialized-form.html#healpix.essentials.HealpixBase">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#fact1">fact1</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#fact2">fact2</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ncap">ncap</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nl2">nl2</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nl3">nl3</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nl4">nl4</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#npface">npface</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#npix">npix</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ns_max">ns_max</a></span></code>
<div class="block">Maximum Nside parameter; equivalent to 2^<code>order_max</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nside">nside</a></span></code>
<div class="block">The Nside parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#order">order</a></span></code>
<div class="block">The order of the map; -1 when <code>nside</code> is not a power of 2.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#order_max">order_max</a></span></code>
<div class="block">Maximum order parameter</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#scheme">scheme</a></span></code>
<div class="block">The ordering scheme.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.healpix.essentials.HealpixTables">
<!--   -->
</a>
<h3>Fields inherited from class&nbsp;healpix.essentials.<a href="../../healpix/essentials/HealpixTables.html" title="class in healpix.essentials">HealpixTables</a></h3>
<code><a href="../../healpix/essentials/HealpixTables.html#ctab">ctab</a>, <a href="../../healpix/essentials/HealpixTables.html#facearray">facearray</a>, <a href="../../healpix/essentials/HealpixTables.html#jpll">jpll</a>, <a href="../../healpix/essentials/HealpixTables.html#jrll">jrll</a>, <a href="../../healpix/essentials/HealpixTables.html#swap_cycle">swap_cycle</a>, <a href="../../healpix/essentials/HealpixTables.html#swaparray">swaparray</a>, <a href="../../healpix/essentials/HealpixTables.html#utab">utab</a>, <a href="../../healpix/essentials/HealpixTables.html#xoffset">xoffset</a>, <a href="../../healpix/essentials/HealpixTables.html#yoffset">yoffset</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#HealpixBase--">HealpixBase</a></span>()</code>
<div class="block">Initializes the object to Nside=1 and scheme=NESTED.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#HealpixBase-long-healpix.essentials.Scheme-">HealpixBase</a></span>(long&nbsp;nside_in,
           <a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;scheme_in)</code>
<div class="block">Initializes the object to a user-supplied Nside and ordering scheme.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ang2pix-healpix.essentials.Pointing-">ang2pix</a></span>(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;ptg)</code>
<div class="block">Returns the pixel which contains the supplied Pointing.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials">Vec3</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#boundaries-long-int-">boundaries</a></span>(long&nbsp;pix,
          int&nbsp;step)</code>
<div class="block">Returns a set of points along the boundary of the given pixel.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#getNpix--">getNpix</a></span>()</code>
<div class="block">Returns the total number of pixels in the pixelisation.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#getNside--">getNside</a></span>()</code>
<div class="block">Returns the current Nside parameter.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#getOrder--">getOrder</a></span>()</code>
<div class="block">Returns the current order parameter.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code><a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#getScheme--">getScheme</a></span>()</code>
<div class="block">Returns the current ordering scheme.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#loc2pix-healpix.essentials.Hploc-">loc2pix</a></span>(healpix.essentials.Hploc&nbsp;loc)</code>&nbsp;</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#maxPixrad--">maxPixrad</a></span>()</code>
<div class="block">Returns the maximum angular distance between a pixel center and its
      corners.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>long[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#neighbours-long-">neighbours</a></span>(long&nbsp;ipix)</code>
<div class="block">Returns the neighboring pixels of ipix.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nest2ring-long-">nest2ring</a></span>(long&nbsp;ipnest)</code>
<div class="block">Returns ring pixel number for the supplied nested pixel number.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>static long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#npix2Nside-long-">npix2Nside</a></span>(long&nbsp;npix)</code>
<div class="block">Calculates the Nside parameter from the number of pixels.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>static long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nside2Npix-long-">nside2Npix</a></span>(long&nbsp;nside)</code>
<div class="block">Calculates the number of pixels from the Nside parameter.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#nside2order-long-">nside2order</a></span>(long&nbsp;nside)</code>
<div class="block">Calculates the map order from its Nside parameter.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>static long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#order2Npix-int-">order2Npix</a></span>(int&nbsp;order)</code>
<div class="block">Calculates the number of pixels from the order parameter.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code><a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#pix2ang-long-">pix2ang</a></span>(long&nbsp;pix)</code>
<div class="block">Returns the Pointing corresponding to the center of the supplied pixel.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>protected healpix.essentials.Hploc</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#pix2loc-long-">pix2loc</a></span>(long&nbsp;pix)</code>&nbsp;</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#pix2ring-long-">pix2ring</a></span>(long&nbsp;pix)</code>
<div class="block">Compute ring index from pixel number.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code><a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials">Vec3</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#pix2vec-long-">pix2vec</a></span>(long&nbsp;pix)</code>
<div class="block">Returns the normalized 3-vector corresponding to the center of the
      supplied pixel.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code>protected <a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#pix2xyf-long-">pix2xyf</a></span>(long&nbsp;pix)</code>&nbsp;</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code><a href="../../healpix/essentials/Zphi.html" title="class in healpix.essentials">Zphi</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#pix2zphi-long-">pix2zphi</a></span>(long&nbsp;pix)</code>
<div class="block">Returns the Zphi corresponding to the center of the supplied pixel.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code><a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#queryDisc-healpix.essentials.Pointing-double-">queryDisc</a></span>(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;ptg,
         double&nbsp;radius)</code>
<div class="block">Returns a range set of pixels whose centers lie within a given disk.</div>
</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code><a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#queryDiscInclusive-healpix.essentials.Pointing-double-int-">queryDiscInclusive</a></span>(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;ptg,
                  double&nbsp;radius,
                  int&nbsp;fact)</code>
<div class="block">Returns a range set of pixels which overlap with a given disk.</div>
</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code><a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#queryPolygon-healpix.essentials.Pointing:A-">queryPolygon</a></span>(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>[]&nbsp;vertex)</code>
<div class="block">Returns a range set of pixels whose centers lie within the convex
      polygon defined by the <code>vertex</code> array.</div>
</td>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><code><a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#queryPolygonInclusive-healpix.essentials.Pointing:A-int-">queryPolygonInclusive</a></span>(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>[]&nbsp;vertex,
                     int&nbsp;fact)</code>
<div class="block">Returns a range set of pixels that overlap with the convex
      polygon defined by the <code>vertex</code> array.</div>
</td>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><code><a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#queryStrip-double-double-boolean-">queryStrip</a></span>(double&nbsp;theta1,
          double&nbsp;theta2,
          boolean&nbsp;inclusive)</code>
<div class="block">Returns a range set of pixels whose centers lie within a given latitude
      range (if <code>inclusive==false</code>), or which overlap with this range
      (if <code>inclusive==true</code>).</div>
</td>
</tr>
<tr id="i25" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ring2nest-long-">ring2nest</a></span>(long&nbsp;ipring)</code>
<div class="block">Returns nested pixel number for the supplied ring pixel number.</div>
</td>
</tr>
<tr id="i26" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ring2theta-long-">ring2theta</a></span>(long&nbsp;ring)</code>
<div class="block">Returns the colatitude for the requested ring.</div>
</td>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><code>protected <a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ring2xyf-long-">ring2xyf</a></span>(long&nbsp;pix)</code>&nbsp;</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#ring2z-long-">ring2z</a></span>(long&nbsp;ring)</code>
<div class="block">Returns the z-coordinate (equivalent to the cosine of the colatitude)
      for the requested ring.</div>
</td>
</tr>
<tr id="i29" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#setNside-long-">setNside</a></span>(long&nbsp;nside_in)</code>
<div class="block">Adjusts the object to nside_in.</div>
</td>
</tr>
<tr id="i30" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#setNsideAndScheme-long-healpix.essentials.Scheme-">setNsideAndScheme</a></span>(long&nbsp;nside_in,
                 <a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;scheme_in)</code>
<div class="block">Adjusts the object to nside_in and scheme_in.</div>
</td>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#setScheme-healpix.essentials.Scheme-">setScheme</a></span>(<a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;scheme_in)</code>
<div class="block">Adjusts the object to scheme.</div>
</td>
</tr>
<tr id="i32" class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#vec2pix-healpix.essentials.Vec3-">vec2pix</a></span>(<a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials">Vec3</a>&nbsp;vec)</code>
<div class="block">Returns the pixel which contains the supplied Vec3.</div>
</td>
</tr>
<tr id="i33" class="rowColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#xyf2pix-healpix.essentials.HealpixBase.Xyf-">xyf2pix</a></span>(<a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a>&nbsp;xyf)</code>&nbsp;</td>
</tr>
<tr id="i34" class="altColor">
<td class="colFirst"><code>protected long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#xyf2pix-int-int-int-">xyf2pix</a></span>(int&nbsp;ix,
       int&nbsp;iy,
       int&nbsp;face_num)</code>&nbsp;</td>
</tr>
<tr id="i35" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../healpix/essentials/HealpixBase.html#zphi2pix-healpix.essentials.Zphi-">zphi2pix</a></span>(<a href="../../healpix/essentials/Zphi.html" title="class in healpix.essentials">Zphi</a>&nbsp;zphi)</code>
<div class="block">Returns the pixel which contains the supplied Zphi.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="order_max">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>order_max</h4>
<pre>public static final&nbsp;int order_max</pre>
<div class="block">Maximum order parameter</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../constant-values.html#healpix.essentials.HealpixBase.order_max">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ns_max">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ns_max</h4>
<pre>public static final&nbsp;long ns_max</pre>
<div class="block">Maximum Nside parameter; equivalent to 2^<code>order_max</code>.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../constant-values.html#healpix.essentials.HealpixBase.ns_max">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="order">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>order</h4>
<pre>protected&nbsp;int order</pre>
<div class="block">The order of the map; -1 when <code>nside</code> is not a power of 2.</div>
</li>
</ul>
<a name="nside">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nside</h4>
<pre>protected&nbsp;long nside</pre>
<div class="block">The Nside parameter.</div>
</li>
</ul>
<a name="nl2">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nl2</h4>
<pre>protected&nbsp;long nl2</pre>
</li>
</ul>
<a name="nl3">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nl3</h4>
<pre>protected&nbsp;long nl3</pre>
</li>
</ul>
<a name="nl4">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nl4</h4>
<pre>protected&nbsp;long nl4</pre>
</li>
</ul>
<a name="npface">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>npface</h4>
<pre>protected&nbsp;long npface</pre>
</li>
</ul>
<a name="npix">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>npix</h4>
<pre>protected&nbsp;long npix</pre>
</li>
</ul>
<a name="ncap">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ncap</h4>
<pre>protected&nbsp;long ncap</pre>
</li>
</ul>
<a name="fact1">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fact1</h4>
<pre>protected&nbsp;double fact1</pre>
</li>
</ul>
<a name="fact2">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fact2</h4>
<pre>protected&nbsp;double fact2</pre>
</li>
</ul>
<a name="scheme">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>scheme</h4>
<pre>protected&nbsp;<a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a> scheme</pre>
<div class="block">The ordering scheme.</div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="HealpixBase--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HealpixBase</h4>
<pre>public&nbsp;HealpixBase()</pre>
<div class="block">Initializes the object to Nside=1 and scheme=NESTED.</div>
</li>
</ul>
<a name="HealpixBase-long-healpix.essentials.Scheme-">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>HealpixBase</h4>
<pre>public&nbsp;HealpixBase(long&nbsp;nside_in,
                   <a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;scheme_in)
            throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Initializes the object to a user-supplied Nside and ordering scheme.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>nside_in</code> - the Nside parameter</dd>
<dd><code>scheme_in</code> - the ordering scheme</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="ring2xyf-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ring2xyf</h4>
<pre>protected&nbsp;<a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a>&nbsp;ring2xyf(long&nbsp;pix)</pre>
</li>
</ul>
<a name="pix2xyf-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pix2xyf</h4>
<pre>protected&nbsp;<a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a>&nbsp;pix2xyf(long&nbsp;pix)</pre>
</li>
</ul>
<a name="xyf2pix-int-int-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>xyf2pix</h4>
<pre>protected&nbsp;long&nbsp;xyf2pix(int&nbsp;ix,
                       int&nbsp;iy,
                       int&nbsp;face_num)</pre>
</li>
</ul>
<a name="xyf2pix-healpix.essentials.HealpixBase.Xyf-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>xyf2pix</h4>
<pre>protected&nbsp;long&nbsp;xyf2pix(<a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials">HealpixBase.Xyf</a>&nbsp;xyf)</pre>
</li>
</ul>
<a name="nside2order-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nside2order</h4>
<pre>public static&nbsp;int&nbsp;nside2order(long&nbsp;nside)
                       throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Calculates the map order from its Nside parameter.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>nside</code> - the Nside parameter</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the map order corresponding to <code>nside</code>; -1 if
        <code>nside</code> is not a power of 2.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="npix2Nside-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>npix2Nside</h4>
<pre>public static&nbsp;long&nbsp;npix2Nside(long&nbsp;npix)
                       throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Calculates the Nside parameter from the number of pixels.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>npix</code> - the number of pixels</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the computed Nside parameter</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="nside2Npix-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nside2Npix</h4>
<pre>public static&nbsp;long&nbsp;nside2Npix(long&nbsp;nside)
                       throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Calculates the number of pixels from the Nside parameter.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>nside</code> - the Nside parameter</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the computed number of pixels</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="order2Npix-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>order2Npix</h4>
<pre>public static&nbsp;long&nbsp;order2Npix(int&nbsp;order)
                       throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Calculates the number of pixels from the order parameter.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>order</code> - the order parameter</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the computed number of pixels</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="setNside-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNside</h4>
<pre>public&nbsp;void&nbsp;setNside(long&nbsp;nside_in)
              throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Adjusts the object to nside_in.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>nside_in</code> - the new Nside parameter</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="setNsideAndScheme-long-healpix.essentials.Scheme-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNsideAndScheme</h4>
<pre>public&nbsp;void&nbsp;setNsideAndScheme(long&nbsp;nside_in,
                              <a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;scheme_in)
                       throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Adjusts the object to nside_in and scheme_in.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>nside_in</code> - the new Nside parameter</dd>
<dd><code>scheme_in</code> - the new ordering scheme</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="getScheme--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getScheme</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;getScheme()</pre>
<div class="block">Returns the current ordering scheme.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the current ordering scheme</dd>
</dl>
</li>
</ul>
<a name="getNside--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNside</h4>
<pre>public&nbsp;int&nbsp;getNside()</pre>
<div class="block">Returns the current Nside parameter.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the current Nside parameter</dd>
</dl>
</li>
</ul>
<a name="getNpix--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNpix</h4>
<pre>public&nbsp;long&nbsp;getNpix()</pre>
<div class="block">Returns the total number of pixels in the pixelisation.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the current total number of pixels</dd>
</dl>
</li>
</ul>
<a name="setScheme-healpix.essentials.Scheme-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setScheme</h4>
<pre>public&nbsp;void&nbsp;setScheme(<a href="../../healpix/essentials/Scheme.html" title="enum in healpix.essentials">Scheme</a>&nbsp;scheme_in)
               throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Adjusts the object to scheme.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme_in</code> - the new ordering scheme</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="getOrder--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOrder</h4>
<pre>public&nbsp;int&nbsp;getOrder()</pre>
<div class="block">Returns the current order parameter.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the current map order parameter.</dd>
</dl>
</li>
</ul>
<a name="ang2pix-healpix.essentials.Pointing-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ang2pix</h4>
<pre>public&nbsp;long&nbsp;ang2pix(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;ptg)
             throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns the pixel which contains the supplied Pointing.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ptg</code> - the requested location on the sphere.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the pixel number containing the location.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="pix2ang-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pix2ang</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;pix2ang(long&nbsp;pix)
                 throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns the Pointing corresponding to the center of the supplied pixel.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>pix</code> - the requested pixel number.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the pixel's center coordinates.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="vec2pix-healpix.essentials.Vec3-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>vec2pix</h4>
<pre>public&nbsp;long&nbsp;vec2pix(<a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials">Vec3</a>&nbsp;vec)
             throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns the pixel which contains the supplied Vec3.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vec</code> - the requested location on the sphere (need not be normalized).</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the pixel number containing the location.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="pix2vec-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pix2vec</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials">Vec3</a>&nbsp;pix2vec(long&nbsp;pix)
             throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns the normalized 3-vector corresponding to the center of the
      supplied pixel.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>pix</code> - the requested pixel number.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the pixel's center coordinates.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="ring2nest-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ring2nest</h4>
<pre>public&nbsp;long&nbsp;ring2nest(long&nbsp;ipring)
               throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns nested pixel number for the supplied ring pixel number.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ipring</code> - the requested pixel number in RING scheme.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the corresponding pixel number in NESTED scheme.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="nest2ring-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nest2ring</h4>
<pre>public&nbsp;long&nbsp;nest2ring(long&nbsp;ipnest)
               throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns ring pixel number for the supplied nested pixel number.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ipnest</code> - the requested pixel number in NESTED scheme.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the corresponding pixel number in RING scheme.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="loc2pix-healpix.essentials.Hploc-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loc2pix</h4>
<pre>protected&nbsp;long&nbsp;loc2pix(healpix.essentials.Hploc&nbsp;loc)</pre>
</li>
</ul>
<a name="zphi2pix-healpix.essentials.Zphi-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>zphi2pix</h4>
<pre>public&nbsp;long&nbsp;zphi2pix(<a href="../../healpix/essentials/Zphi.html" title="class in healpix.essentials">Zphi</a>&nbsp;zphi)</pre>
<div class="block">Returns the pixel which contains the supplied Zphi.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>zphi</code> - the requested location on the sphere.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the pixel number containing the location.</dd>
</dl>
</li>
</ul>
<a name="pix2loc-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pix2loc</h4>
<pre>protected&nbsp;healpix.essentials.Hploc&nbsp;pix2loc(long&nbsp;pix)</pre>
</li>
</ul>
<a name="pix2zphi-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pix2zphi</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/Zphi.html" title="class in healpix.essentials">Zphi</a>&nbsp;pix2zphi(long&nbsp;pix)</pre>
<div class="block">Returns the Zphi corresponding to the center of the supplied pixel.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>pix</code> - the requested pixel number.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the pixel's center coordinates.</dd>
</dl>
</li>
</ul>
<a name="neighbours-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>neighbours</h4>
<pre>public&nbsp;long[]&nbsp;neighbours(long&nbsp;ipix)
                  throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns the neighboring pixels of ipix.
      This method works in both RING and NEST schemes, but is
      considerably faster in the NEST scheme.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ipix</code> - the requested pixel number.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>array with indices of the neighboring pixels.
        The returned array contains (in this order)
        the pixel numbers of the SW, W, NW, N, NE, E, SE and S neighbor
        of ipix. If a neighbor does not exist (this can only happen
        for the W, N, E and S neighbors), its entry is set to -1.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="maxPixrad--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>maxPixrad</h4>
<pre>public&nbsp;double&nbsp;maxPixrad()</pre>
<div class="block">Returns the maximum angular distance between a pixel center and its
      corners.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>maximum angular distance between a pixel center and its
        corners.</dd>
</dl>
</li>
</ul>
<a name="ring2z-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ring2z</h4>
<pre>public&nbsp;double&nbsp;ring2z(long&nbsp;ring)</pre>
<div class="block">Returns the z-coordinate (equivalent to the cosine of the colatitude)
      for the requested ring.
      This method also accepts the not-really-existing ring indices 0 and
      4*Nside, which correspond to North and South Poles, respectively.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ring</code> - ring index: the northernmost ring in the map has index 1;
        ring indices are increasing towards the South pole.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>z-coordinate of the ring.</dd>
</dl>
</li>
</ul>
<a name="ring2theta-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ring2theta</h4>
<pre>public&nbsp;double&nbsp;ring2theta(long&nbsp;ring)</pre>
<div class="block">Returns the colatitude for the requested ring.
      This method also accepts the not-really-existing ring indices 0 and
      4*Nside, which correspond to North and South Poles, respectively.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ring</code> - ring index: the northernmost ring in the map has index 1;
        ring indices are increasing towards the South pole.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>z-coordinate of the ring.</dd>
</dl>
</li>
</ul>
<a name="queryStrip-double-double-boolean-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>queryStrip</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a>&nbsp;queryStrip(double&nbsp;theta1,
                           double&nbsp;theta2,
                           boolean&nbsp;inclusive)
                    throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns a range set of pixels whose centers lie within a given latitude
      range (if <code>inclusive==false</code>), or which overlap with this range
      (if <code>inclusive==true</code>).<p>
      The latitude range is defined as follows:
      <ul>
      <li>if <code>theta1&lt;theta2</code>, it is the range between <code>theta1</code>
          and <code>theta2</code></li>
      <li>otherwise it is the range between 0 and <code>theta2</code>, and between
          <code>theta1</code> and pi.</li>
      </ul>
      This method currently only works in the RING scheme.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="queryDisc-healpix.essentials.Pointing-double-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>queryDisc</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a>&nbsp;queryDisc(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;ptg,
                          double&nbsp;radius)
                   throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns a range set of pixels whose centers lie within a given disk. <p>
      This method is more efficient in the RING scheme.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ptg</code> - the angular coordinates of the disk center</dd>
<dd><code>radius</code> - the radius (in radians) of the disk</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested set of pixel number ranges</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="queryDiscInclusive-healpix.essentials.Pointing-double-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>queryDiscInclusive</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a>&nbsp;queryDiscInclusive(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>&nbsp;ptg,
                                   double&nbsp;radius,
                                   int&nbsp;fact)
                            throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns a range set of pixels which overlap with a given disk. <p>
      This method is more efficient in the RING scheme. <p>
      This method may return some pixels which don't overlap with
      the polygon at all. The higher <code>fact</code> is chosen, the fewer false
      positives are returned, at the cost of increased run time.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ptg</code> - the angular coordinates of the disk center</dd>
<dd><code>radius</code> - the radius (in radians) of the disk</dd>
<dd><code>fact</code> - The overlapping test will be done at the resolution
        <code>fact*nside</code>. For NESTED ordering, <code>fact</code> must be a power
        of 2, else it can be any positive integer. A typical choice would be 4.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested set of pixel number ranges</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="queryPolygon-healpix.essentials.Pointing:A-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>queryPolygon</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a>&nbsp;queryPolygon(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>[]&nbsp;vertex)
                      throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns a range set of pixels whose centers lie within the convex
      polygon defined by the <code>vertex</code> array. <p>
      This method is more efficient in the RING scheme.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vertex</code> - an array containing the vertices of the requested convex
        polygon.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested set of pixel number ranges</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="queryPolygonInclusive-healpix.essentials.Pointing:A-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>queryPolygonInclusive</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/RangeSet.html" title="class in healpix.essentials">RangeSet</a>&nbsp;queryPolygonInclusive(<a href="../../healpix/essentials/Pointing.html" title="class in healpix.essentials">Pointing</a>[]&nbsp;vertex,
                                      int&nbsp;fact)
                               throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns a range set of pixels that overlap with the convex
      polygon defined by the <code>vertex</code> array. <p>
      This method is more efficient in the RING scheme.<p>
      This method may return some pixels which don't overlap with
      the polygon at all. The higher <code>fact</code> is chosen, the fewer false
      positives are returned, at the cost of increased run time.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vertex</code> - an array containing the vertices of the requested convex
        polygon.</dd>
<dd><code>fact</code> - The overlapping test will be done at the resolution
        <code>fact*nside</code>. For NESTED ordering, <code>fact</code> must be a power
        of 2, else it can be any positive integer. A typical choice would be 4.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested set of pixel number ranges</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
<a name="pix2ring-long-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pix2ring</h4>
<pre>public&nbsp;long&nbsp;pix2ring(long&nbsp;pix)</pre>
<div class="block">Compute ring index from pixel number.
      Works in both RING and NESTED schemes</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>pix</code> - pixel number</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>ring index (1 to 4Nside-1)</dd>
</dl>
</li>
</ul>
<a name="boundaries-long-int-">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>boundaries</h4>
<pre>public&nbsp;<a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials">Vec3</a>[]&nbsp;boundaries(long&nbsp;pix,
                         int&nbsp;step)
                  throws <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<div class="block">Returns a set of points along the boundary of the given pixel.
 Step 1 gives 4 points on the corners. The first point corresponds
 to the northernmost corner, the subsequent points follow the pixel
 boundary through west, south and east corners.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>pix</code> - pixel index number</dd>
<dd><code>step</code> - the number of returned points is 4*step</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><a href="../../healpix/essentials/Vec3.html" title="class in healpix.essentials"><code>Vec3</code></a> for each point</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../healpix/essentials/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../healpix/essentials/Fxyf.html" title="class in healpix.essentials"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../healpix/essentials/HealpixBase.Xyf.html" title="class in healpix.essentials"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?healpix/essentials/HealpixBase.html" target="_top">Frames</a></li>
<li><a href="HealpixBase.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>