Codebase list votca-xtp / b08fa64d-b91e-48a0-b185-c4ba9579a74a/main src / tests / test_sphere_lebedev_rule_xfine.cc
b08fa64d-b91e-48a0-b185-c4ba9579a74a/main

Tree @b08fa64d-b91e-48a0-b185-c4ba9579a74a/main (Download .tar.gz)

test_sphere_lebedev_rule_xfine.cc @b08fa64d-b91e-48a0-b185-c4ba9579a74a/mainraw · history · blame

   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
/*
 * Copyright 2009-2019 The VOTCA Development Team (http://www.votca.org)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
#define BOOST_TEST_MAIN

#define BOOST_TEST_MODULE sphere_lebedev_rule_test_xfine
#include "votca/xtp/orbitals.h"
#include <boost/test/unit_test.hpp>
#include <fstream>
#include <votca/xtp/sphere_lebedev_rule.h>
using namespace votca::xtp;
using namespace votca;

BOOST_AUTO_TEST_SUITE(sphere_lebedev_rule_test_xfine)

Eigen::VectorXd ReadVectorFromString(const std::string& matrix) {
  votca::tools::Tokenizer lines(matrix, "\n");

  std::vector<double> entries;
  for (auto line : lines) {
    if (line[0] == '#') {
      continue;
    }
    votca::tools::Tokenizer entries_tok(line, ", ");
    std::vector<std::string> temp = entries_tok.ToVector();

    for (const auto& s : temp) {
      entries.push_back(std::stod(s));
    }
  }

  return Eigen::Map<Eigen::VectorXd>(entries.data(), entries.size());
}

BOOST_AUTO_TEST_CASE(xfine_test) {

  std::ofstream xyzfile("molecule.xyz");
  xyzfile << " 5" << std::endl;
  xyzfile << " methane" << std::endl;
  xyzfile << " Ge            .000000     .000000     .000000" << std::endl;
  xyzfile << " H            .629118     .629118     .629118" << std::endl;
  xyzfile << " H           -.629118    -.629118     .629118" << std::endl;
  xyzfile << " H            .629118    -.629118    -.629118" << std::endl;
  xyzfile << " H           -.629118     .629118    -.629118" << std::endl;
  xyzfile.close();

  QMMolecule mol("noname", 0);
  mol.LoadFromFile("molecule.xyz");

  LebedevGrid spheregrid;

  auto grid = spheregrid.CalculateSphericalGrids(mol, "xfine");

  auto Hgrid = grid.at("H");
  auto Gegrid = grid.at("Ge");
  std::string Ge_phi_ref_string =
      "1.5708,1.5708,1.5708,1.5708,0,3.14159,0.955317,0.955317,"
      "0.955317,0.955317,2.18628,2.18628,2.18628,2.18628,0.045685,"
      "0.045685,0.045685,0.045685,3.09591,3.09591,3.09591,3.09591,1.5385,"
      "1.5385,1.5385,1.5385,1.60309,1.60309,1.60309,1.60309,1.5385,"
      "1.5385,1.5385,1.5385,1.60309,1.60309,1.60309,1.60309,0.113903,"
      "0.113903,0.113903,0.113903,3.02769,3.02769,3.02769,3.02769,1.49034,"
      "1.49034,1.49034,1.49034,1.65125,1.65125,1.65125,1.65125,1.49034,"
      "1.49034,1.49034,1.49034,1.65125,1.65125,1.65125,1.65125,0.192716,"
      "0.192716,0.192716,0.192716,2.94888,2.94888,2.94888,2.94888,1.43495,"
      "1.43495,1.43495,1.43495,1.70664,1.70664,1.70664,1.70664,1.43495,"
      "1.43495,1.43495,1.43495,1.70664,1.70664,1.70664,1.70664,0.277769,"
      "0.277769,0.277769,0.277769,2.86382,2.86382,2.86382,2.86382,1.37566,"
      "1.37566,1.37566,1.37566,1.76593,1.76593,1.76593,1.76593,1.37566,"
      "1.37566,1.37566,1.37566,1.76593,1.76593,1.76593,1.76593,0.367019,"
      "0.367019,0.367019,0.367019,2.77457,2.77457,2.77457,2.77457,1.31426,"
      "1.31426,1.31426,1.31426,1.82734,1.82734,1.82734,1.82734,1.31426,"
      "1.31426,1.31426,1.31426,1.82734,1.82734,1.82734,1.82734,0.459379,"
      "0.459379,0.459379,0.459379,2.68221,2.68221,2.68221,2.68221,1.25189,"
      "1.25189,1.25189,1.25189,1.8897,1.8897,1.8897,1.8897,1.25189,"
      "1.25189,1.25189,1.25189,1.8897,1.8897,1.8897,1.8897,0.554252,"
      "0.554252,0.554252,0.554252,2.58734,2.58734,2.58734,2.58734,1.18947,"
      "1.18947,1.18947,1.18947,1.95213,1.95213,1.95213,1.95213,1.18947,"
      "1.18947,1.18947,1.18947,1.95213,1.95213,1.95213,1.95213,0.651332,"
      "0.651332,0.651332,0.651332,2.49026,2.49026,2.49026,2.49026,1.12776,"
      "1.12776,1.12776,1.12776,2.01383,2.01383,2.01383,2.01383,1.12776,"
      "1.12776,1.12776,1.12776,2.01383,2.01383,2.01383,2.01383,0.750502,"
      "0.750502,0.750502,0.750502,2.39109,2.39109,2.39109,2.39109,1.06757,"
      "1.06757,1.06757,1.06757,2.07402,2.07402,2.07402,2.07402,1.06757,"
      "1.06757,1.06757,1.06757,2.07402,2.07402,2.07402,2.07402,0.851786,"
      "0.851786,0.851786,0.851786,2.28981,2.28981,2.28981,2.28981,1.00976,"
      "1.00976,1.00976,1.00976,2.13184,2.13184,2.13184,2.13184,1.00976,"
      "1.00976,1.00976,1.00976,2.13184,2.13184,2.13184,2.13184,1.06131,"
      "1.06131,1.06131,1.06131,2.08029,2.08029,2.08029,2.08029,0.90549,"
      "0.90549,0.90549,0.90549,2.2361,2.2361,2.2361,2.2361,0.90549,"
      "0.90549,0.90549,0.90549,2.2361,2.2361,2.2361,2.2361,1.17,1.17,"
      "1.17,1.17,1.9716,1.9716,1.9716,1.9716,0.861806,0.861806,0.861806,"
      "0.861806,2.27979,2.27979,2.27979,2.27979,0.861806,0.861806,"
      "0.861806,0.861806,2.27979,2.27979,2.27979,2.27979,1.28154,1.28154,"
      "1.28154,1.28154,1.86005,1.86005,1.86005,1.86005,0.826123,0.826123,"
      "0.826123,0.826123,2.31547,2.31547,2.31547,2.31547,0.826123,"
      "0.826123,0.826123,0.826123,2.31547,2.31547,2.31547,2.31547,1.39583,"
      "1.39583,1.39583,1.39583,1.74576,1.74576,1.74576,1.74576,0.800552,"
      "0.800552,0.800552,0.800552,2.34104,2.34104,2.34104,2.34104,"
      "0.800552,0.800552,0.800552,0.800552,2.34104,2.34104,2.34104,"
      "2.34104,1.51221,1.51221,1.51221,1.51221,1.62939,1.62939,1.62939,"
      "1.62939,0.787113,0.787113,0.787113,0.787113,2.35448,2.35448,"
      "2.35448,2.35448,0.787113,0.787113,0.787113,0.787113,2.35448,"
      "2.35448,2.35448,2.35448,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,1.5708,1.47647,1.47647,1.66512,1.66512,0.0943258,0.0943258,"
      "3.04727,3.04727,1.47647,1.47647,1.66512,1.66512,0.0943258,"
      "0.0943258,3.04727,3.04727,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,1.5708,1.5708,1.33968,1.33968,1.80191,1.80191,0.231115,"
      "0.231115,2.91048,2.91048,1.33968,1.33968,1.80191,1.80191,0.231115,"
      "0.231115,2.91048,2.91048,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,1.5708,1.5708,1.18785,1.18785,1.95374,1.95374,0.382942,"
      "0.382942,2.75865,2.75865,1.18785,1.18785,1.95374,1.95374,0.382942,"
      "0.382942,2.75865,2.75865,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,1.5708,1.5708,1.02904,1.02904,2.11256,2.11256,0.54176,"
      "0.54176,2.59983,2.59983,1.02904,1.02904,2.11256,2.11256,0.54176,"
      "0.54176,2.59983,2.59983,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,1.5708,0.866936,0.866936,2.27466,2.27466,0.70386,0.70386,"
      "2.43773,2.43773,0.866936,0.866936,2.27466,2.27466,0.70386,0.70386,"
      "2.43773,2.43773,0.803621,0.803621,0.803621,0.803621,2.33797,"
      "2.33797,2.33797,2.33797,1.11664,1.11664,1.11664,1.11664,2.02495,"
      "2.02495,2.02495,2.02495,0.803621,0.803621,0.803621,0.803621,"
      "2.33797,2.33797,2.33797,2.33797,0.963375,0.963375,0.963375,"
      "0.963375,2.17822,2.17822,2.17822,2.17822,1.11664,1.11664,1.11664,"
      "1.11664,2.02495,2.02495,2.02495,2.02495,0.963375,0.963375,0.963375,"
      "0.963375,2.17822,2.17822,2.17822,2.17822,0.703983,0.703983,"
      "0.703983,0.703983,2.43761,2.43761,2.43761,2.43761,1.17462,1.17462,"
      "1.17462,1.17462,1.96697,1.96697,1.96697,1.96697,0.703983,0.703983,"
      "0.703983,0.703983,2.43761,2.43761,2.43761,2.43761,1.02436,1.02436,"
      "1.02436,1.02436,2.11723,2.11723,2.11723,2.11723,1.17462,1.17462,"
      "1.17462,1.17462,1.96697,1.96697,1.96697,1.96697,1.02436,1.02436,"
      "1.02436,1.02436,2.11723,2.11723,2.11723,2.11723,0.606519,0.606519,"
      "0.606519,0.606519,2.53507,2.53507,2.53507,2.53507,1.23429,1.23429,"
      "1.23429,1.23429,1.90731,1.90731,1.90731,1.90731,0.606519,0.606519,"
      "0.606519,0.606519,2.53507,2.53507,2.53507,2.53507,1.08758,1.08758,"
      "1.08758,1.08758,2.05402,2.05402,2.05402,2.05402,1.23429,1.23429,"
      "1.23429,1.23429,1.90731,1.90731,1.90731,1.90731,1.08758,1.08758,"
      "1.08758,1.08758,2.05402,2.05402,2.05402,2.05402,0.511308,0.511308,"
      "0.511308,0.511308,2.63028,2.63028,2.63028,2.63028,1.29476,1.29476,"
      "1.29476,1.29476,1.84683,1.84683,1.84683,1.84683,0.511308,0.511308,"
      "0.511308,0.511308,2.63028,2.63028,2.63028,2.63028,1.1523,1.1523,"
      "1.1523,1.1523,1.9893,1.9893,1.9893,1.9893,1.29476,1.29476,1.29476,"
      "1.29476,1.84683,1.84683,1.84683,1.84683,1.1523,1.1523,1.1523,"
      "1.1523,1.9893,1.9893,1.9893,1.9893,0.418613,0.418613,0.418613,"
      "0.418613,2.72298,2.72298,2.72298,2.72298,1.35518,1.35518,1.35518,"
      "1.35518,1.78641,1.78641,1.78641,1.78641,0.418613,0.418613,0.418613,"
      "0.418613,2.72298,2.72298,2.72298,2.72298,1.21788,1.21788,1.21788,"
      "1.21788,1.92371,1.92371,1.92371,1.92371,1.35518,1.35518,1.35518,"
      "1.35518,1.78641,1.78641,1.78641,1.78641,1.21788,1.21788,1.21788,"
      "1.21788,1.92371,1.92371,1.92371,1.92371,0.328976,0.328976,0.328976,"
      "0.328976,2.81262,2.81262,2.81262,2.81262,1.41457,1.41457,1.41457,"
      "1.41457,1.72702,1.72702,1.72702,1.72702,0.328976,0.328976,0.328976,"
      "0.328976,2.81262,2.81262,2.81262,2.81262,1.28373,1.28373,1.28373,"
      "1.28373,1.85786,1.85786,1.85786,1.85786,1.41457,1.41457,1.41457,"
      "1.41457,1.72702,1.72702,1.72702,1.72702,1.28373,1.28373,1.28373,"
      "1.28373,1.85786,1.85786,1.85786,1.85786,0.243405,0.243405,0.243405,"
      "0.243405,2.89819,2.89819,2.89819,2.89819,1.47171,1.47171,1.47171,"
      "1.47171,1.66989,1.66989,1.66989,1.66989,0.243405,0.243405,0.243405,"
      "0.243405,2.89819,2.89819,2.89819,2.89819,1.34922,1.34922,1.34922,"
      "1.34922,1.79237,1.79237,1.79237,1.79237,1.47171,1.47171,1.47171,"
      "1.47171,1.66989,1.66989,1.66989,1.66989,1.34922,1.34922,1.34922,"
      "1.34922,1.79237,1.79237,1.79237,1.79237,0.163819,0.163819,0.163819,"
      "0.163819,2.97777,2.97777,2.97777,2.97777,1.52479,1.52479,1.52479,"
      "1.52479,1.6168,1.6168,1.6168,1.6168,0.163819,0.163819,0.163819,"
      "0.163819,2.97777,2.97777,2.97777,2.97777,1.41368,1.41368,1.41368,"
      "1.41368,1.72791,1.72791,1.72791,1.72791,1.52479,1.52479,1.52479,"
      "1.52479,1.6168,1.6168,1.6168,1.6168,1.41368,1.41368,1.41368,"
      "1.41368,1.72791,1.72791,1.72791,1.72791,0.762697,0.762697,0.762697,"
      "0.762697,2.3789,2.3789,2.3789,2.3789,1.22636,1.22636,1.22636,"
      "1.22636,1.91523,1.91523,1.91523,1.91523,0.762697,0.762697,0.762697,"
      "0.762697,2.3789,2.3789,2.3789,2.3789,0.923871,0.923871,0.923871,"
      "0.923871,2.21772,2.21772,2.21772,2.21772,1.22636,1.22636,1.22636,"
      "1.22636,1.91523,1.91523,1.91523,1.91523,0.923871,0.923871,0.923871,"
      "0.923871,2.21772,2.21772,2.21772,2.21772,0.665984,0.665984,"
      "0.665984,0.665984,2.47561,2.47561,2.47561,2.47561,1.28468,1.28468,"
      "1.28468,1.28468,1.85691,1.85691,1.85691,1.85691,0.665984,0.665984,"
      "0.665984,0.665984,2.47561,2.47561,2.47561,2.47561,0.988907,"
      "0.988907,0.988907,0.988907,2.15269,2.15269,2.15269,2.15269,1.28468,"
      "1.28468,1.28468,1.28468,1.85691,1.85691,1.85691,1.85691,0.988907,"
      "0.988907,0.988907,0.988907,2.15269,2.15269,2.15269,2.15269,"
      "0.571752,0.571752,0.571752,0.571752,2.56984,2.56984,2.56984,"
      "2.56984,1.34399,1.34399,1.34399,1.34399,1.7976,1.7976,1.7976,"
      "1.7976,0.571752,0.571752,0.571752,0.571752,2.56984,2.56984,2.56984,"
      "2.56984,1.05621,1.05621,1.05621,1.05621,2.08538,2.08538,2.08538,"
      "2.08538,1.34399,1.34399,1.34399,1.34399,1.7976,1.7976,1.7976,"
      "1.7976,1.05621,1.05621,1.05621,1.05621,2.08538,2.08538,2.08538,"
      "2.08538,0.480286,0.480286,0.480286,0.480286,2.66131,2.66131,"
      "2.66131,2.66131,1.40339,1.40339,1.40339,1.40339,1.7382,1.7382,"
      "1.7382,1.7382,0.480286,0.480286,0.480286,0.480286,2.66131,2.66131,"
      "2.66131,2.66131,1.12526,1.12526,1.12526,1.12526,2.01633,2.01633,"
      "2.01633,2.01633,1.40339,1.40339,1.40339,1.40339,1.7382,1.7382,"
      "1.7382,1.7382,1.12526,1.12526,1.12526,1.12526,2.01633,2.01633,"
      "2.01633,2.01633,0.392169,0.392169,0.392169,0.392169,2.74942,"
      "2.74942,2.74942,2.74942,1.46188,1.46188,1.46188,1.46188,1.67971,"
      "1.67971,1.67971,1.67971,0.392169,0.392169,0.392169,0.392169,"
      "2.74942,2.74942,2.74942,2.74942,1.19565,1.19565,1.19565,1.19565,"
      "1.94594,1.94594,1.94594,1.94594,1.46188,1.46188,1.46188,1.46188,"
      "1.67971,1.67971,1.67971,1.67971,1.19565,1.19565,1.19565,1.19565,"
      "1.94594,1.94594,1.94594,1.94594,0.308465,0.308465,0.308465,"
      "0.308465,2.83313,2.83313,2.83313,2.83313,1.51825,1.51825,1.51825,"
      "1.51825,1.62334,1.62334,1.62334,1.62334,0.308465,0.308465,0.308465,"
      "0.308465,2.83313,2.83313,2.83313,2.83313,1.26713,1.26713,1.26713,"
      "1.26713,1.87446,1.87446,1.87446,1.87446,1.51825,1.51825,1.51825,"
      "1.51825,1.62334,1.62334,1.62334,1.62334,1.26713,1.26713,1.26713,"
      "1.26713,1.87446,1.87446,1.87446,1.87446,0.731046,0.731046,0.731046,"
      "0.731046,2.41055,2.41055,2.41055,2.41055,1.33897,1.33897,1.33897,"
      "1.33897,1.80262,1.80262,1.80262,1.80262,0.731046,0.731046,0.731046,"
      "0.731046,2.41055,2.41055,2.41055,2.41055,0.893264,0.893264,"
      "0.893264,0.893264,2.24833,2.24833,2.24833,2.24833,1.33897,1.33897,"
      "1.33897,1.33897,1.80262,1.80262,1.80262,1.80262,0.893264,0.893264,"
      "0.893264,0.893264,2.24833,2.24833,2.24833,2.24833,0.638729,"
      "0.638729,0.638729,0.638729,2.50286,2.50286,2.50286,2.50286,1.39762,"
      "1.39762,1.39762,1.39762,1.74397,1.74397,1.74397,1.74397,0.638729,"
      "0.638729,0.638729,0.638729,2.50286,2.50286,2.50286,2.50286,"
      "0.963399,0.963399,0.963399,0.963399,2.17819,2.17819,2.17819,"
      "2.17819,1.39762,1.39762,1.39762,1.39762,1.74397,1.74397,1.74397,"
      "1.74397,0.963399,0.963399,0.963399,0.963399,2.17819,2.17819,"
      "2.17819,2.17819,0.549471,0.549471,0.549471,0.549471,2.59212,"
      "2.59212,2.59212,2.59212,1.45652,1.45652,1.45652,1.45652,1.68507,"
      "1.68507,1.68507,1.68507,0.549471,0.549471,0.549471,0.549471,"
      "2.59212,2.59212,2.59212,2.59212,1.03603,1.03603,1.03603,1.03603,"
      "2.10556,2.10556,2.10556,2.10556,1.45652,1.45652,1.45652,1.45652,"
      "1.68507,1.68507,1.68507,1.68507,1.03603,1.03603,1.03603,1.03603,"
      "2.10556,2.10556,2.10556,2.10556,0.463863,0.463863,0.463863,"
      "0.463863,2.67773,2.67773,2.67773,2.67773,1.51465,1.51465,1.51465,"
      "1.51465,1.62694,1.62694,1.62694,1.62694,0.463863,0.463863,0.463863,"
      "0.463863,2.67773,2.67773,2.67773,2.67773,1.11088,1.11088,1.11088,"
      "1.11088,2.03071,2.03071,2.03071,2.03071,1.51465,1.51465,1.51465,"
      "1.51465,1.62694,1.62694,1.62694,1.62694,1.11088,1.11088,1.11088,"
      "1.11088,2.03071,2.03071,2.03071,2.03071,0.710836,0.710836,0.710836,"
      "0.710836,2.43076,2.43076,2.43076,2.43076,1.45411,1.45411,1.45411,"
      "1.45411,1.68748,1.68748,1.68748,1.68748,0.710836,0.710836,0.710836,"
      "0.710836,2.43076,2.43076,2.43076,2.43076,0.873695,0.873695,"
      "0.873695,0.873695,2.2679,2.2679,2.2679,2.2679,1.45411,1.45411,"
      "1.45411,1.45411,1.68748,1.68748,1.68748,1.68748,0.873695,0.873695,"
      "0.873695,0.873695,2.2679,2.2679,2.2679,2.2679,0.624391,0.624391,"
      "0.624391,0.624391,2.5172,2.5172,2.5172,2.5172,1.51279,1.51279,"
      "1.51279,1.51279,1.6288,1.6288,1.6288,1.6288,0.624391,0.624391,"
      "0.624391,0.624391,2.5172,2.5172,2.5172,2.5172,0.949952,0.949952,"
      "0.949952,0.949952,2.19164,2.19164,2.19164,2.19164,1.51279,1.51279,"
      "1.51279,1.51279,1.6288,1.6288,1.6288,1.6288,0.949952,0.949952,"
      "0.949952,0.949952,2.19164,2.19164,2.19164,2.19164";
  Eigen::VectorXd Ge_phi_ref = ReadVectorFromString(Ge_phi_ref_string);
  std::string Ge_theta_ref_string =
      "0,3.14159,1.5708,-1.5708,0,0,0.785398,2.35619,"
      "-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,0.785398,"
      "2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,"
      "1.53848,1.60311,-1.53848,-1.60311,1.53848,1.60311,-1.53848,"
      "-1.60311,0.0323154,3.10928,-0.0323154,-3.10928,0.0323154,3.10928,"
      "-0.0323154,-3.10928,0.785398,2.35619,-0.785398,-2.35619,0.785398,"
      "2.35619,-0.785398,-2.35619,1.49008,1.65151,-1.49008,-1.65151,"
      "1.49008,1.65151,-1.49008,-1.65151,0.0807158,3.06088,-0.0807158,"
      "-3.06088,0.0807158,3.06088,-0.0807158,-3.06088,0.785398,2.35619,"
      "-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,1.43368,"
      "1.70791,-1.43368,-1.70791,1.43368,1.70791,-1.43368,-1.70791,"
      "0.137118,3.00448,-0.137118,-3.00448,0.137118,3.00448,-0.137118,"
      "-3.00448,0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,"
      "-0.785398,-2.35619,1.37184,1.76975,-1.37184,-1.76975,1.37184,"
      "1.76975,-1.37184,-1.76975,0.198957,2.94264,-0.198957,-2.94264,"
      "0.198957,2.94264,-0.198957,-2.94264,0.785398,2.35619,-0.785398,"
      "-2.35619,0.785398,2.35619,-0.785398,-2.35619,1.30537,1.83622,"
      "-1.30537,-1.83622,1.30537,1.83622,-1.30537,-1.83622,0.265425,"
      "2.87617,-0.265425,-2.87617,0.265425,2.87617,-0.265425,-2.87617,"
      "0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,"
      "-2.35619,1.23431,1.90728,-1.23431,-1.90728,1.23431,1.90728,"
      "-1.23431,-1.90728,0.336486,2.80511,-0.336486,-2.80511,0.336486,"
      "2.80511,-0.336486,-2.80511,0.785398,2.35619,-0.785398,-2.35619,"
      "0.785398,2.35619,-0.785398,-2.35619,1.15824,1.98336,-1.15824,"
      "-1.98336,1.15824,1.98336,-1.15824,-1.98336,0.412561,2.72903,"
      "-0.412561,-2.72903,0.412561,2.72903,-0.412561,-2.72903,0.785398,"
      "2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,"
      "1.07641,2.06518,-1.07641,-2.06518,1.07641,2.06518,-1.07641,"
      "-2.06518,0.494385,2.64721,-0.494385,-2.64721,0.494385,2.64721,"
      "-0.494385,-2.64721,0.785398,2.35619,-0.785398,-2.35619,0.785398,"
      "2.35619,-0.785398,-2.35619,0.98784,2.15375,-0.98784,-2.15375,"
      "0.98784,2.15375,-0.98784,-2.15375,0.582956,2.55864,-0.582956,"
      "-2.55864,0.582956,2.55864,-0.582956,-2.55864,0.785398,2.35619,"
      "-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,0.891301,"
      "2.25029,-0.891301,-2.25029,0.891301,2.25029,-0.891301,-2.25029,"
      "0.679496,2.4621,-0.679496,-2.4621,0.679496,2.4621,-0.679496,"
      "-2.4621,0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,"
      "-0.785398,-2.35619,0.668678,2.47291,-0.668678,-2.47291,0.668678,"
      "2.47291,-0.668678,-2.47291,0.902118,2.23947,-0.902118,-2.23947,"
      "0.902118,2.23947,-0.902118,-2.23947,0.785398,2.35619,-0.785398,"
      "-2.35619,0.785398,2.35619,-0.785398,-2.35619,0.539871,2.60172,"
      "-0.539871,-2.60172,0.539871,2.60172,-0.539871,-2.60172,1.03093,"
      "2.11067,-1.03093,-2.11067,1.03093,2.11067,-1.03093,-2.11067,"
      "0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,"
      "-2.35619,0.398367,2.74323,-0.398367,-2.74323,0.398367,2.74323,"
      "-0.398367,-2.74323,1.17243,1.96916,-1.17243,-1.96916,1.17243,"
      "1.96916,-1.17243,-1.96916,0.785398,2.35619,-0.785398,-2.35619,"
      "0.785398,2.35619,-0.785398,-2.35619,0.244975,2.89662,-0.244975,"
      "-2.89662,0.244975,2.89662,-0.244975,-2.89662,1.32582,1.81577,"
      "-1.32582,-1.81577,1.32582,1.81577,-1.32582,-1.81577,0.785398,"
      "2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,"
      "0.0827626,3.05883,-0.0827626,-3.05883,0.0827626,3.05883,-0.0827626,"
      "-3.05883,1.48803,1.65356,-1.48803,-1.65356,1.48803,1.65356,"
      "-1.48803,-1.65356,0.0943258,3.04727,-0.0943258,-3.04727,1.47647,"
      "1.66512,-1.47647,-1.66512,0,3.14159,0,3.14159,0,3.14159,0,"
      "3.14159,1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,1.5708,"
      "-1.5708,0.231115,2.91048,-0.231115,-2.91048,1.33968,1.80191,"
      "-1.33968,-1.80191,0,3.14159,0,3.14159,0,3.14159,0,3.14159,"
      "1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,"
      "0.382942,2.75865,-0.382942,-2.75865,1.18785,1.95374,-1.18785,"
      "-1.95374,0,3.14159,0,3.14159,0,3.14159,0,3.14159,1.5708,-1.5708,"
      "1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,0.54176,2.59983,"
      "-0.54176,-2.59983,1.02904,2.11256,-1.02904,-2.11256,0,3.14159,0,"
      "3.14159,0,3.14159,0,3.14159,1.5708,-1.5708,1.5708,-1.5708,1.5708,"
      "-1.5708,1.5708,-1.5708,0.70386,2.43773,-0.70386,-2.43773,0.866936,"
      "2.27466,-0.866936,-2.27466,0,3.14159,0,3.14159,0,3.14159,0,"
      "3.14159,1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,1.5708,"
      "-1.5708,0.655324,2.48627,-0.655324,-2.48627,0.655324,2.48627,"
      "-0.655324,-2.48627,0.882614,2.25898,-0.882614,-2.25898,0.882614,"
      "2.25898,-0.882614,-2.25898,0.915472,2.22612,-0.915472,-2.22612,"
      "0.915472,2.22612,-0.915472,-2.22612,1.00715,2.13444,-1.00715,"
      "-2.13444,1.00715,2.13444,-1.00715,-2.13444,0.688183,2.45341,"
      "-0.688183,-2.45341,0.688183,2.45341,-0.688183,-2.45341,0.563647,"
      "2.57795,-0.563647,-2.57795,0.563647,2.57795,-0.563647,-2.57795,"
      "0.63875,2.50284,-0.63875,-2.50284,0.63875,2.50284,-0.63875,"
      "-2.50284,0.972452,2.16914,-0.972452,-2.16914,0.972452,2.16914,"
      "-0.972452,-2.16914,0.932046,2.20955,-0.932046,-2.20955,0.932046,"
      "2.20955,-0.932046,-2.20955,1.10217,2.03942,-1.10217,-2.03942,"
      "1.10217,2.03942,-1.10217,-2.03942,0.598344,2.54325,-0.598344,"
      "-2.54325,0.598344,2.54325,-0.598344,-2.54325,0.468626,2.67297,"
      "-0.468626,-2.67297,0.468626,2.67297,-0.468626,-2.67297,0.61784,"
      "2.52375,-0.61784,-2.52375,0.61784,2.52375,-0.61784,-2.52375,"
      "1.05613,2.08546,-1.05613,-2.08546,1.05613,2.08546,-1.05613,"
      "-2.08546,0.952956,2.18864,-0.952956,-2.18864,0.952956,2.18864,"
      "-0.952956,-2.18864,1.18868,1.95292,-1.18868,-1.95292,1.18868,"
      "1.95292,-1.18868,-1.95292,0.514664,2.62693,-0.514664,-2.62693,"
      "0.514664,2.62693,-0.514664,-2.62693,0.38212,2.75947,-0.38212,"
      "-2.75947,0.38212,2.75947,-0.38212,-2.75947,0.59075,2.55084,"
      "-0.59075,-2.55084,0.59075,2.55084,-0.59075,-2.55084,1.13473,"
      "2.00687,-1.13473,-2.00687,1.13473,2.00687,-1.13473,-2.00687,"
      "0.980047,2.16155,-0.980047,-2.16155,0.980047,2.16155,-0.980047,"
      "-2.16155,1.2679,1.87369,-1.2679,-1.87369,1.2679,1.87369,-1.2679,"
      "-1.87369,0.436069,2.70552,-0.436069,-2.70552,0.436069,2.70552,"
      "-0.436069,-2.70552,0.302895,2.8387,-0.302895,-2.8387,0.302895,"
      "2.8387,-0.302895,-2.8387,0.554282,2.58731,-0.554282,-2.58731,"
      "0.554282,2.58731,-0.554282,-2.58731,1.20914,1.93245,-1.20914,"
      "-1.93245,1.20914,1.93245,-1.20914,-1.93245,1.01651,2.12508,"
      "-1.01651,-2.12508,1.01651,2.12508,-1.01651,-2.12508,1.34077,"
      "1.80082,-1.34077,-1.80082,1.34077,1.80082,-1.34077,-1.80082,"
      "0.361659,2.77993,-0.361659,-2.77993,0.361659,2.77993,-0.361659,"
      "-2.77993,0.230026,2.91157,-0.230026,-2.91157,0.230026,2.91157,"
      "-0.230026,-2.91157,0.502478,2.63911,-0.502478,-2.63911,0.502478,"
      "2.63911,-0.502478,-2.63911,1.28009,1.8615,-1.28009,-1.8615,1.28009,"
      "1.8615,-1.28009,-1.8615,1.06832,2.07327,-1.06832,-2.07327,1.06832,"
      "2.07327,-1.06832,-2.07327,1.40785,1.73375,-1.40785,-1.73375,"
      "1.40785,1.73375,-1.40785,-1.73375,0.290708,2.85088,-0.290708,"
      "-2.85088,0.290708,2.85088,-0.290708,-2.85088,0.162951,2.97864,"
      "-0.162951,-2.97864,0.162951,2.97864,-0.162951,-2.97864,0.422979,"
      "2.71861,-0.422979,-2.71861,0.422979,2.71861,-0.422979,-2.71861,"
      "1.34811,1.79348,-1.34811,-1.79348,1.34811,1.79348,-1.34811,"
      "-1.79348,1.14782,1.99378,-1.14782,-1.99378,1.14782,1.99378,"
      "-1.14782,-1.99378,1.46921,1.67238,-1.46921,-1.67238,1.46921,"
      "1.67238,-1.46921,-1.67238,0.222688,2.91891,-0.222688,-2.91891,"
      "0.222688,2.91891,-0.222688,-2.91891,0.101583,3.04001,-0.101583,"
      "-3.04001,0.101583,3.04001,-0.101583,-3.04001,0.285851,2.85574,"
      "-0.285851,-2.85574,0.285851,2.85574,-0.285851,-2.85574,1.41351,"
      "1.72808,-1.41351,-1.72808,1.41351,1.72808,-1.41351,-1.72808,"
      "1.28495,1.85665,-1.28495,-1.85665,1.28495,1.85665,-1.28495,"
      "-1.85665,1.52422,1.61737,-1.52422,-1.61737,1.52422,1.61737,"
      "-1.52422,-1.61737,0.157283,2.98431,-0.157283,-2.98431,0.157283,"
      "2.98431,-0.157283,-2.98431,0.0465768,3.09502,-0.0465768,-3.09502,"
      "0.0465768,3.09502,-0.0465768,-3.09502,0.510653,2.63094,-0.510653,"
      "-2.63094,0.510653,2.63094,-0.510653,-2.63094,0.875849,2.26574,"
      "-0.875849,-2.26574,0.875849,2.26574,-0.875849,-2.26574,1.06014,"
      "2.08145,-1.06014,-2.08145,1.06014,2.08145,-1.06014,-2.08145,"
      "1.13386,2.00773,-1.13386,-2.00773,1.13386,2.00773,-1.13386,"
      "-2.00773,0.694947,2.44665,-0.694947,-2.44665,0.694947,2.44665,"
      "-0.694947,-2.44665,0.436938,2.70465,-0.436938,-2.70465,0.436938,"
      "2.70465,-0.436938,-2.70465,0.474402,2.66719,-0.474402,-2.66719,"
      "0.474402,2.66719,-0.474402,-2.66719,0.960765,2.18083,-0.960765,"
      "-2.18083,0.960765,2.18083,-0.960765,-2.18083,1.09639,2.0452,"
      "-1.09639,-2.0452,1.09639,2.0452,-1.09639,-2.0452,1.22619,1.9154,"
      "-1.22619,-1.9154,1.22619,1.9154,-1.22619,-1.9154,0.610031,2.53156,"
      "-0.610031,-2.53156,0.610031,2.53156,-0.610031,-2.53156,0.344608,"
      "2.79698,-0.344608,-2.79698,0.344608,2.79698,-0.344608,-2.79698,"
      "0.428561,2.71303,-0.428561,-2.71303,0.428561,2.71303,-0.428561,"
      "-2.71303,1.04129,2.1003,-1.04129,-2.1003,1.04129,2.1003,-1.04129,"
      "-2.1003,1.14224,1.99936,-1.14224,-1.99936,1.14224,1.99936,-1.14224,"
      "-1.99936,1.30952,1.83207,-1.30952,-1.83207,1.30952,1.83207,"
      "-1.30952,-1.83207,0.529505,2.61209,-0.529505,-2.61209,0.529505,"
      "2.61209,-0.529505,-2.61209,0.261278,2.88031,-0.261278,-2.88031,"
      "0.261278,2.88031,-0.261278,-2.88031,0.368942,2.77265,-0.368942,"
      "-2.77265,0.368942,2.77265,-0.368942,-2.77265,1.11848,2.02311,"
      "-1.11848,-2.02311,1.11848,2.02311,-1.11848,-2.02311,1.20185,"
      "1.93974,-1.20185,-1.93974,1.20185,1.93974,-1.20185,-1.93974,"
      "1.38508,1.75651,-1.38508,-1.75651,1.38508,1.75651,-1.38508,"
      "-1.75651,0.452318,2.68927,-0.452318,-2.68927,0.452318,2.68927,"
      "-0.452318,-2.68927,0.185714,2.95588,-0.185714,-2.95588,0.185714,"
      "2.95588,-0.185714,-2.95588,0.288382,2.85321,-0.288382,-2.85321,"
      "0.288382,2.85321,-0.288382,-2.85321,1.1933,1.94829,-1.1933,"
      "-1.94829,1.1933,1.94829,-1.1933,-1.94829,1.28241,1.85918,-1.28241,"
      "-1.85918,1.28241,1.85918,-1.28241,-1.85918,1.45371,1.68788,"
      "-1.45371,-1.68788,1.45371,1.68788,-1.45371,-1.68788,0.377497,"
      "2.7641,-0.377497,-2.7641,0.377497,2.7641,-0.377497,-2.7641,"
      "0.117088,3.0245,-0.117088,-3.0245,0.117088,3.0245,-0.117088,"
      "-3.0245,0.173867,2.96773,-0.173867,-2.96773,0.173867,2.96773,"
      "-0.173867,-2.96773,1.2667,1.87489,-1.2667,-1.87489,1.2667,1.87489,"
      "-1.2667,-1.87489,1.39693,1.74466,-1.39693,-1.74466,1.39693,1.74466,"
      "-1.39693,-1.74466,1.51573,1.62586,-1.51573,-1.62586,1.51573,"
      "1.62586,-1.51573,-1.62586,0.304097,2.8375,-0.304097,-2.8375,"
      "0.304097,2.8375,-0.304097,-2.8375,0.0550659,3.08653,-0.0550659,"
      "-3.08653,0.0550659,3.08653,-0.0550659,-3.08653,0.351303,2.79029,"
      "-0.351303,-2.79029,0.351303,2.79029,-0.351303,-2.79029,0.870947,"
      "2.27065,-0.870947,-2.27065,0.870947,2.27065,-0.870947,-2.27065,"
      "1.21949,1.9221,-1.21949,-1.9221,1.21949,1.9221,-1.21949,-1.9221,"
      "1.27146,1.87013,-1.27146,-1.87013,1.27146,1.87013,-1.27146,"
      "-1.87013,0.69985,2.44174,-0.69985,-2.44174,0.69985,2.44174,"
      "-0.69985,-2.44174,0.299336,2.84226,-0.299336,-2.84226,0.299336,"
      "2.84226,-0.299336,-2.84226,0.293205,2.84839,-0.293205,-2.84839,"
      "0.293205,2.84839,-0.293205,-2.84839,0.952806,2.18879,-0.952806,"
      "-2.18879,0.952806,2.18879,-0.952806,-2.18879,1.27759,1.864,"
      "-1.27759,-1.864,1.27759,1.864,-1.27759,-1.864,1.35938,1.78221,"
      "-1.35938,-1.78221,1.35938,1.78221,-1.35938,-1.78221,0.61799,2.5236,"
      "-0.61799,-2.5236,0.61799,2.5236,-0.61799,-2.5236,0.211412,2.93018,"
      "-0.211412,-2.93018,0.211412,2.93018,-0.211412,-2.93018,0.220111,"
      "2.92148,-0.220111,-2.92148,0.220111,2.92148,-0.220111,-2.92148,"
      "1.03214,2.10945,-1.03214,-2.10945,1.03214,2.10945,-1.03214,"
      "-2.10945,1.35069,1.79091,-1.35069,-1.79091,1.35069,1.79091,"
      "-1.35069,-1.79091,1.43788,1.70371,-1.43788,-1.70371,1.43788,"
      "1.70371,-1.43788,-1.70371,0.538655,2.60294,-0.538655,-2.60294,"
      "0.538655,2.60294,-0.538655,-2.60294,0.132917,3.00868,-0.132917,"
      "-3.00868,0.132917,3.00868,-0.132917,-3.00868,0.125755,3.01584,"
      "-0.125755,-3.01584,0.125755,3.01584,-0.125755,-3.01584,1.1101,"
      "2.03149,-1.1101,-2.03149,1.1101,2.03149,-1.1101,-2.03149,1.44504,"
      "1.69655,-1.44504,-1.69655,1.44504,1.69655,-1.44504,-1.69655,"
      "1.50813,1.63346,-1.50813,-1.63346,1.50813,1.63346,-1.50813,"
      "-1.63346,0.460698,2.68089,-0.460698,-2.68089,0.460698,2.68089,"
      "-0.460698,-2.68089,0.0626633,3.07893,-0.0626633,-3.07893,0.0626633,"
      "3.07893,-0.0626633,-3.07893,0.179387,2.96221,-0.179387,-2.96221,"
      "0.179387,2.96221,-0.179387,-2.96221,0.867949,2.27364,-0.867949,"
      "-2.27364,0.867949,2.27364,-0.867949,-2.27364,1.39141,1.75018,"
      "-1.39141,-1.75018,1.39141,1.75018,-1.39141,-1.75018,1.41837,"
      "1.72323,-1.41837,-1.72323,1.41837,1.72323,-1.41837,-1.72323,"
      "0.702848,2.43874,-0.702848,-2.43874,0.702848,2.43874,-0.702848,"
      "-2.43874,0.152431,2.98916,-0.152431,-2.98916,0.152431,2.98916,"
      "-0.152431,-2.98916,0.0993346,3.04226,-0.0993346,-3.04226,0.0993346,"
      "3.04226,-0.0993346,-3.04226,0.948747,2.19285,-0.948747,-2.19285,"
      "0.948747,2.19285,-0.948747,-2.19285,1.47146,1.67013,-1.47146,"
      "-1.67013,1.47146,1.67013,-1.47146,-1.67013,1.49946,1.64213,"
      "-1.49946,-1.64213,1.49946,1.64213,-1.49946,-1.64213,0.622049,"
      "2.51954,-0.622049,-2.51954,0.622049,2.51954,-0.622049,-2.51954,"
      "0.0713376,3.07026,-0.0713376,-3.07026,0.0713376,3.07026,-0.0713376,"
      "-3.07026";
  Eigen::VectorXd Ge_theta_ref = ReadVectorFromString(Ge_theta_ref_string);

  std::string Ge_weight_ref_string =
      "0.000977307,0.000977307,0.000977307,0.000977307,"
      "0.000977307,0.000977307,0.00949722,0.00949722,0.00949722,0.00949722,"
      "0.00949722,0.00949722,0.00949722,0.00949722,0.0035709,0.0035709,"
      "0.0035709,0.0035709,0.0035709,0.0035709,0.0035709,0.0035709,"
      "0.0035709,0.0035709,0.0035709,0.0035709,0.0035709,0.0035709,"
      "0.0035709,0.0035709,0.0035709,0.0035709,0.0035709,0.0035709,"
      "0.0035709,0.0035709,0.0035709,0.0035709,0.00549706,0.00549706,"
      "0.00549706,0.00549706,0.00549706,0.00549706,0.00549706,0.00549706,"
      "0.00549706,0.00549706,0.00549706,0.00549706,0.00549706,0.00549706,"
      "0.00549706,0.00549706,0.00549706,0.00549706,0.00549706,0.00549706,"
      "0.00549706,0.00549706,0.00549706,0.00549706,0.00680742,0.00680742,"
      "0.00680742,0.00680742,0.00680742,0.00680742,0.00680742,0.00680742,"
      "0.00680742,0.00680742,0.00680742,0.00680742,0.00680742,0.00680742,"
      "0.00680742,0.00680742,0.00680742,0.00680742,0.00680742,0.00680742,"
      "0.00680742,0.00680742,0.00680742,0.00680742,0.00772581,0.00772581,"
      "0.00772581,0.00772581,0.00772581,0.00772581,0.00772581,0.00772581,"
      "0.00772581,0.00772581,0.00772581,0.00772581,0.00772581,0.00772581,"
      "0.00772581,0.00772581,0.00772581,0.00772581,0.00772581,0.00772581,"
      "0.00772581,0.00772581,0.00772581,0.00772581,0.00837473,0.00837473,"
      "0.00837473,0.00837473,0.00837473,0.00837473,0.00837473,0.00837473,"
      "0.00837473,0.00837473,0.00837473,0.00837473,0.00837473,0.00837473,"
      "0.00837473,0.00837473,0.00837473,0.00837473,0.00837473,0.00837473,"
      "0.00837473,0.00837473,0.00837473,0.00837473,0.00882792,0.00882792,"
      "0.00882792,0.00882792,0.00882792,0.00882792,0.00882792,0.00882792,"
      "0.00882792,0.00882792,0.00882792,0.00882792,0.00882792,0.00882792,"
      "0.00882792,0.00882792,0.00882792,0.00882792,0.00882792,0.00882792,"
      "0.00882792,0.00882792,0.00882792,0.00882792,0.00913388,0.00913388,"
      "0.00913388,0.00913388,0.00913388,0.00913388,0.00913388,0.00913388,"
      "0.00913388,0.00913388,0.00913388,0.00913388,0.00913388,0.00913388,"
      "0.00913388,0.00913388,0.00913388,0.00913388,0.00913388,0.00913388,"
      "0.00913388,0.00913388,0.00913388,0.00913388,0.00932756,0.00932756,"
      "0.00932756,0.00932756,0.00932756,0.00932756,0.00932756,0.00932756,"
      "0.00932756,0.00932756,0.00932756,0.00932756,0.00932756,0.00932756,"
      "0.00932756,0.00932756,0.00932756,0.00932756,0.00932756,0.00932756,"
      "0.00932756,0.00932756,0.00932756,0.00932756,0.00943677,0.00943677,"
      "0.00943677,0.00943677,0.00943677,0.00943677,0.00943677,0.00943677,"
      "0.00943677,0.00943677,0.00943677,0.00943677,0.00943677,0.00943677,"
      "0.00943677,0.00943677,0.00943677,0.00943677,0.00943677,0.00943677,"
      "0.00943677,0.00943677,0.00943677,0.00943677,0.00948577,0.00948577,"
      "0.00948577,0.00948577,0.00948577,0.00948577,0.00948577,0.00948577,"
      "0.00948577,0.00948577,0.00948577,0.00948577,0.00948577,0.00948577,"
      "0.00948577,0.00948577,0.00948577,0.00948577,0.00948577,0.00948577,"
      "0.00948577,0.00948577,0.00948577,0.00948577,0.00949275,0.00949275,"
      "0.00949275,0.00949275,0.00949275,0.00949275,0.00949275,0.00949275,"
      "0.00949275,0.00949275,0.00949275,0.00949275,0.00949275,0.00949275,"
      "0.00949275,0.00949275,0.00949275,0.00949275,0.00949275,0.00949275,"
      "0.00949275,0.00949275,0.00949275,0.00949275,0.00949156,0.00949156,"
      "0.00949156,0.00949156,0.00949156,0.00949156,0.00949156,0.00949156,"
      "0.00949156,0.00949156,0.00949156,0.00949156,0.00949156,0.00949156,"
      "0.00949156,0.00949156,0.00949156,0.00949156,0.00949156,0.00949156,"
      "0.00949156,0.00949156,0.00949156,0.00949156,0.00950617,0.00950617,"
      "0.00950617,0.00950617,0.00950617,0.00950617,0.00950617,0.00950617,"
      "0.00950617,0.00950617,0.00950617,0.00950617,0.00950617,0.00950617,"
      "0.00950617,0.00950617,0.00950617,0.00950617,0.00950617,0.00950617,"
      "0.00950617,0.00950617,0.00950617,0.00950617,0.00953535,0.00953535,"
      "0.00953535,0.00953535,0.00953535,0.00953535,0.00953535,0.00953535,"
      "0.00953535,0.00953535,0.00953535,0.00953535,0.00953535,0.00953535,"
      "0.00953535,0.00953535,0.00953535,0.00953535,0.00953535,0.00953535,"
      "0.00953535,0.00953535,0.00953535,0.00953535,0.00956082,0.00956082,"
      "0.00956082,0.00956082,0.00956082,0.00956082,0.00956082,0.00956082,"
      "0.00956082,0.00956082,0.00956082,0.00956082,0.00956082,0.00956082,"
      "0.00956082,0.00956082,0.00956082,0.00956082,0.00956082,0.00956082,"
      "0.00956082,0.00956082,0.00956082,0.00956082,0.00505379,0.00505379,"
      "0.00505379,0.00505379,0.00505379,0.00505379,0.00505379,0.00505379,"
      "0.00505379,0.00505379,0.00505379,0.00505379,0.00505379,0.00505379,"
      "0.00505379,0.00505379,0.00505379,0.00505379,0.00505379,0.00505379,"
      "0.00505379,0.00505379,0.00505379,0.00505379,0.00729462,0.00729462,"
      "0.00729462,0.00729462,0.00729462,0.00729462,0.00729462,0.00729462,"
      "0.00729462,0.00729462,0.00729462,0.00729462,0.00729462,0.00729462,"
      "0.00729462,0.00729462,0.00729462,0.00729462,0.00729462,0.00729462,"
      "0.00729462,0.00729462,0.00729462,0.00729462,0.00853527,0.00853527,"
      "0.00853527,0.00853527,0.00853527,0.00853527,0.00853527,0.00853527,"
      "0.00853527,0.00853527,0.00853527,0.00853527,0.00853527,0.00853527,"
      "0.00853527,0.00853527,0.00853527,0.00853527,0.00853527,0.00853527,"
      "0.00853527,0.00853527,0.00853527,0.00853527,0.00921962,0.00921962,"
      "0.00921962,0.00921962,0.00921962,0.00921962,0.00921962,0.00921962,"
      "0.00921962,0.00921962,0.00921962,0.00921962,0.00921962,0.00921962,"
      "0.00921962,0.00921962,0.00921962,0.00921962,0.00921962,0.00921962,"
      "0.00921962,0.00921962,0.00921962,0.00921962,0.00952765,0.00952765,"
      "0.00952765,0.00952765,0.00952765,0.00952765,0.00952765,0.00952765,"
      "0.00952765,0.00952765,0.00952765,0.00952765,0.00952765,0.00952765,"
      "0.00952765,0.00952765,0.00952765,0.00952765,0.00952765,0.00952765,"
      "0.00952765,0.00952765,0.00952765,0.00952765,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,0.00947285,"
      "0.00947285,0.00947285,0.00947285,0.00947285,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,0.00940407,"
      "0.00940407,0.00940407,0.00940407,0.00940407,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,0.00926363,"
      "0.00926363,0.00926363,0.00926363,0.00926363,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,0.00902699,"
      "0.00902699,0.00902699,0.00902699,0.00902699,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,0.00866554,"
      "0.00866554,0.00866554,0.00866554,0.00866554,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,0.00814314,"
      "0.00814314,0.00814314,0.00814314,0.00814314,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,0.00741109,"
      "0.00741109,0.00741109,0.00741109,0.00741109,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,0.00640346,"
      "0.00640346,0.00640346,0.00640346,0.00640346,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,0.00947116,"
      "0.00947116,0.00947116,0.00947116,0.00947116,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,0.00939023,"
      "0.00939023,0.00939023,0.00939023,0.00939023,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,0.00922751,"
      "0.00922751,0.00922751,0.00922751,0.00922751,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,0.00896092,"
      "0.00896092,0.00896092,0.00896092,0.00896092,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,0.00856652,"
      "0.00856652,0.00856652,0.00856652,0.00856652,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,0.00801853,"
      "0.00801853,0.00801853,0.00801853,0.00801853,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,0.00948809,"
      "0.00948809,0.00948809,0.00948809,0.00948809,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,0.00939794,"
      "0.00939794,0.00939794,0.00939794,0.00939794,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,0.00921859,"
      "0.00921859,0.00921859,0.00921859,0.00921859,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,0.00893484,"
      "0.00893484,0.00893484,0.00893484,0.00893484,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,0.00951446,"
      "0.00951446,0.00951446,0.00951446,0.00951446,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,0.0094121,"
      "0.0094121,0.0094121,0.0094121,0.0094121";
  Eigen::VectorXd Ge_weight_ref = ReadVectorFromString(Ge_weight_ref_string);

  std::string H_phi_ref_string =
      "1.5708,1.5708,1.5708,1.5708,0,3.14159,0.785398,0.785398,"
      "2.35619,2.35619,0.785398,0.785398,2.35619,2.35619,1.5708,1.5708,"
      "1.5708,1.5708,0.955317,0.955317,0.955317,0.955317,2.18628,2.18628,"
      "2.18628,2.18628,0.0525288,0.0525288,0.0525288,0.0525288,3.08906,"
      "3.08906,3.08906,3.08906,1.53366,1.53366,1.53366,1.53366,1.60793,"
      "1.60793,1.60793,1.60793,1.53366,1.53366,1.53366,1.53366,1.60793,"
      "1.60793,1.60793,1.60793,0.129623,0.129623,0.129623,0.129623,"
      "3.01197,3.01197,3.01197,3.01197,1.47927,1.47927,1.47927,1.47927,"
      "1.66232,1.66232,1.66232,1.66232,1.47927,1.47927,1.47927,1.47927,"
      "1.66232,1.66232,1.66232,1.66232,0.218256,0.218256,0.218256,"
      "0.218256,2.92334,2.92334,2.92334,2.92334,1.41708,1.41708,1.41708,"
      "1.41708,1.72451,1.72451,1.72451,1.72451,1.41708,1.41708,1.41708,"
      "1.41708,1.72451,1.72451,1.72451,1.72451,0.313542,0.313542,0.313542,"
      "0.313542,2.82805,2.82805,2.82805,2.82805,1.35094,1.35094,1.35094,"
      "1.35094,1.79066,1.79066,1.79066,1.79066,1.35094,1.35094,1.35094,"
      "1.35094,1.79066,1.79066,1.79066,1.79066,0.413284,0.413284,0.413284,"
      "0.413284,2.72831,2.72831,2.72831,2.72831,1.28285,1.28285,1.28285,"
      "1.28285,1.85875,1.85875,1.85875,1.85875,1.28285,1.28285,1.28285,"
      "1.28285,1.85875,1.85875,1.85875,1.85875,0.51637,0.51637,0.51637,"
      "0.51637,2.62522,2.62522,2.62522,2.62522,1.21417,1.21417,1.21417,"
      "1.21417,1.92743,1.92743,1.92743,1.92743,1.21417,1.21417,1.21417,"
      "1.21417,1.92743,1.92743,1.92743,1.92743,0.622242,0.622242,0.622242,"
      "0.622242,2.51935,2.51935,2.51935,2.51935,1.14599,1.14599,1.14599,"
      "1.14599,1.9956,1.9956,1.9956,1.9956,1.14599,1.14599,1.14599,"
      "1.14599,1.9956,1.9956,1.9956,1.9956,0.730667,0.730667,0.730667,"
      "0.730667,2.41093,2.41093,2.41093,2.41093,1.07935,1.07935,1.07935,"
      "1.07935,2.06224,2.06224,2.06224,2.06224,1.07935,1.07935,1.07935,"
      "1.07935,2.06224,2.06224,2.06224,2.06224,0.841638,0.841638,0.841638,"
      "0.841638,2.29995,2.29995,2.29995,2.29995,1.01536,1.01536,1.01536,"
      "1.01536,2.12623,2.12623,2.12623,2.12623,1.01536,1.01536,1.01536,"
      "1.01536,2.12623,2.12623,2.12623,2.12623,1.07199,1.07199,1.07199,"
      "1.07199,2.06961,2.06961,2.06961,2.06961,0.900845,0.900845,0.900845,"
      "0.900845,2.24075,2.24075,2.24075,2.24075,0.900845,0.900845,"
      "0.900845,0.900845,2.24075,2.24075,2.24075,2.24075,1.19197,1.19197,"
      "1.19197,1.19197,1.94962,1.94962,1.94962,1.94962,0.854001,0.854001,"
      "0.854001,0.854001,2.28759,2.28759,2.28759,2.28759,0.854001,"
      "0.854001,0.854001,0.854001,2.28759,2.28759,2.28759,2.28759,1.31545,"
      "1.31545,1.31545,1.31545,1.82615,1.82615,1.82615,1.82615,0.817319,"
      "0.817319,0.817319,0.817319,2.32427,2.32427,2.32427,2.32427,"
      "0.817319,0.817319,0.817319,0.817319,2.32427,2.32427,2.32427,"
      "2.32427,1.44212,1.44212,1.44212,1.44212,1.69948,1.69948,1.69948,"
      "1.69948,0.793632,0.793632,0.793632,0.793632,2.34796,2.34796,"
      "2.34796,2.34796,0.793632,0.793632,0.793632,0.793632,2.34796,"
      "2.34796,2.34796,2.34796,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,1.5708,0.107445,0.107445,3.03415,3.03415,1.46335,1.46335,"
      "1.67824,1.67824,0.107445,0.107445,3.03415,3.03415,1.46335,1.46335,"
      "1.67824,1.67824,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "1.5708,0.261166,0.261166,2.88043,2.88043,1.30963,1.30963,1.83196,"
      "1.83196,0.261166,0.261166,2.88043,2.88043,1.30963,1.30963,1.83196,"
      "1.83196,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,"
      "0.430445,0.430445,2.71115,2.71115,1.14035,1.14035,2.00124,2.00124,"
      "0.430445,0.430445,2.71115,2.71115,1.14035,1.14035,2.00124,2.00124,"
      "1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,1.5708,0.606551,"
      "0.606551,2.53504,2.53504,0.964246,0.964246,2.17735,2.17735,"
      "0.606551,0.606551,2.53504,2.53504,0.964246,0.964246,2.17735,"
      "2.17735,1.51867,1.51867,1.51867,1.51867,1.62293,1.62293,1.62293,"
      "1.62293,1.39268,1.39268,1.39268,1.39268,1.74891,1.74891,1.74891,"
      "1.74891,1.51867,1.51867,1.51867,1.51867,1.62293,1.62293,1.62293,"
      "1.62293,0.185747,0.185747,0.185747,0.185747,2.95585,2.95585,"
      "2.95585,2.95585,1.39268,1.39268,1.39268,1.39268,1.74891,1.74891,"
      "1.74891,1.74891,0.185747,0.185747,0.185747,0.185747,2.95585,"
      "2.95585,2.95585,2.95585,1.459,1.459,1.459,1.459,1.68259,1.68259,"
      "1.68259,1.68259,1.32062,1.32062,1.32062,1.32062,1.82097,1.82097,"
      "1.82097,1.82097,1.459,1.459,1.459,1.459,1.68259,1.68259,1.68259,"
      "1.68259,0.275001,0.275001,0.275001,0.275001,2.86659,2.86659,"
      "2.86659,2.86659,1.32062,1.32062,1.32062,1.32062,1.82097,1.82097,"
      "1.82097,1.82097,0.275001,0.275001,0.275001,0.275001,2.86659,"
      "2.86659,2.86659,2.86659,1.5117,1.5117,1.5117,1.5117,1.62989,"
      "1.62989,1.62989,1.62989,1.2287,1.2287,1.2287,1.2287,1.91289,"
      "1.91289,1.91289,1.91289,1.5117,1.5117,1.5117,1.5117,1.62989,"
      "1.62989,1.62989,1.62989,0.347577,0.347577,0.347577,0.347577,"
      "2.79402,2.79402,2.79402,2.79402,1.2287,1.2287,1.2287,1.2287,"
      "1.91289,1.91289,1.91289,1.91289,0.347577,0.347577,0.347577,"
      "0.347577,2.79402,2.79402,2.79402,2.79402,1.39524,1.39524,1.39524,"
      "1.39524,1.74635,1.74635,1.74635,1.74635,1.24785,1.24785,1.24785,"
      "1.24785,1.89374,1.89374,1.89374,1.89374,1.39524,1.39524,1.39524,"
      "1.39524,1.74635,1.74635,1.74635,1.74635,0.370677,0.370677,0.370677,"
      "0.370677,2.77092,2.77092,2.77092,2.77092,1.24785,1.24785,1.24785,"
      "1.24785,1.89374,1.89374,1.89374,1.89374,0.370677,0.370677,0.370677,"
      "0.370677,2.77092,2.77092,2.77092,2.77092,1.44877,1.44877,1.44877,"
      "1.44877,1.69282,1.69282,1.69282,1.69282,1.14941,1.14941,1.14941,"
      "1.14941,1.99218,1.99218,1.99218,1.99218,1.44877,1.44877,1.44877,"
      "1.44877,1.69282,1.69282,1.69282,1.69282,0.440901,0.440901,0.440901,"
      "0.440901,2.70069,2.70069,2.70069,2.70069,1.14941,1.14941,1.14941,"
      "1.14941,1.99218,1.99218,1.99218,1.99218,0.440901,0.440901,0.440901,"
      "0.440901,2.70069,2.70069,2.70069,2.70069,1.32943,1.32943,1.32943,"
      "1.32943,1.81216,1.81216,1.81216,1.81216,1.17512,1.17512,1.17512,"
      "1.17512,1.96647,1.96647,1.96647,1.96647,1.32943,1.32943,1.32943,"
      "1.32943,1.81216,1.81216,1.81216,1.81216,0.470723,0.470723,0.470723,"
      "0.470723,2.67087,2.67087,2.67087,2.67087,1.17512,1.17512,1.17512,"
      "1.17512,1.96647,1.96647,1.96647,1.96647,0.470723,0.470723,0.470723,"
      "0.470723,2.67087,2.67087,2.67087,2.67087,1.50809,1.50809,1.50809,"
      "1.50809,1.6335,1.6335,1.6335,1.6335,1.05501,1.05501,1.05501,"
      "1.05501,2.08659,2.08659,2.08659,2.08659,1.50809,1.50809,1.50809,"
      "1.50809,1.6335,1.6335,1.6335,1.6335,0.520353,0.520353,0.520353,"
      "0.520353,2.62124,2.62124,2.62124,2.62124,1.05501,1.05501,1.05501,"
      "1.05501,2.08659,2.08659,2.08659,2.08659,0.520353,0.520353,0.520353,"
      "0.520353,2.62124,2.62124,2.62124,2.62124,1.38396,1.38396,1.38396,"
      "1.38396,1.75763,1.75763,1.75763,1.75763,1.07181,1.07181,1.07181,"
      "1.07181,2.06978,2.06978,2.06978,2.06978,1.38396,1.38396,1.38396,"
      "1.38396,1.75763,1.75763,1.75763,1.75763,0.539048,0.539048,0.539048,"
      "0.539048,2.60255,2.60255,2.60255,2.60255,1.07181,1.07181,1.07181,"
      "1.07181,2.06978,2.06978,2.06978,2.06978,0.539048,0.539048,0.539048,"
      "0.539048,2.60255,2.60255,2.60255,2.60255,1.26301,1.26301,1.26301,"
      "1.26301,1.87858,1.87858,1.87858,1.87858,1.1032,1.1032,1.1032,"
      "1.1032,2.03839,2.03839,2.03839,2.03839,1.26301,1.26301,1.26301,"
      "1.26301,1.87858,1.87858,1.87858,1.87858,0.574111,0.574111,0.574111,"
      "0.574111,2.56748,2.56748,2.56748,2.56748,1.1032,1.1032,1.1032,"
      "1.1032,2.03839,2.03839,2.03839,2.03839,0.574111,0.574111,0.574111,"
      "0.574111,2.56748,2.56748,2.56748,2.56748,1.44368,1.44368,1.44368,"
      "1.44368,1.69792,1.69792,1.69792,1.69792,0.972528,0.972528,0.972528,"
      "0.972528,2.16906,2.16906,2.16906,2.16906,1.44368,1.44368,1.44368,"
      "1.44368,1.69792,1.69792,1.69792,1.69792,0.615424,0.615424,0.615424,"
      "0.615424,2.52617,2.52617,2.52617,2.52617,0.972528,0.972528,"
      "0.972528,0.972528,2.16906,2.16906,2.16906,2.16906,0.615424,"
      "0.615424,0.615424,0.615424,2.52617,2.52617,2.52617,2.52617,1.31872,"
      "1.31872,1.31872,1.31872,1.82287,1.82287,1.82287,1.82287,0.996278,"
      "0.996278,0.996278,0.996278,2.14531,2.14531,2.14531,2.14531,1.31872,"
      "1.31872,1.31872,1.31872,1.82287,1.82287,1.82287,1.82287,0.640918,"
      "0.640918,0.640918,0.640918,2.50067,2.50067,2.50067,2.50067,"
      "0.996278,0.996278,0.996278,0.996278,2.14531,2.14531,2.14531,"
      "2.14531,0.640918,0.640918,0.640918,0.640918,2.50067,2.50067,"
      "2.50067,2.50067,1.19718,1.19718,1.19718,1.19718,1.94441,1.94441,"
      "1.94441,1.94441,1.03288,1.03288,1.03288,1.03288,2.10872,2.10872,"
      "2.10872,2.10872,1.19718,1.19718,1.19718,1.19718,1.94441,1.94441,"
      "1.94441,1.94441,0.680344,0.680344,0.680344,0.680344,2.46125,"
      "2.46125,2.46125,2.46125,1.03288,1.03288,1.03288,1.03288,2.10872,"
      "2.10872,2.10872,2.10872,0.680344,0.680344,0.680344,0.680344,"
      "2.46125,2.46125,2.46125,2.46125,1.50651,1.50651,1.50651,1.50651,"
      "1.63509,1.63509,1.63509,1.63509,0.877042,0.877042,0.877042,"
      "0.877042,2.26455,2.26455,2.26455,2.26455,1.50651,1.50651,1.50651,"
      "1.50651,1.63509,1.63509,1.63509,1.63509,0.697949,0.697949,0.697949,"
      "0.697949,2.44364,2.44364,2.44364,2.44364,0.877042,0.877042,"
      "0.877042,0.877042,2.26455,2.26455,2.26455,2.26455,0.697949,"
      "0.697949,0.697949,0.697949,2.44364,2.44364,2.44364,2.44364,1.37902,"
      "1.37902,1.37902,1.37902,1.76257,1.76257,1.76257,1.76257,0.893125,"
      "0.893125,0.893125,0.893125,2.24847,2.24847,2.24847,2.24847,1.37902,"
      "1.37902,1.37902,1.37902,1.76257,1.76257,1.76257,1.76257,0.714595,"
      "0.714595,0.714595,0.714595,2.427,2.427,2.427,2.427,0.893125,"
      "0.893125,0.893125,0.893125,2.24847,2.24847,2.24847,2.24847,"
      "0.714595,0.714595,0.714595,0.714595,2.427,2.427,2.427,2.427,"
      "1.25431,1.25431,1.25431,1.25431,1.88728,1.88728,1.88728,1.88728,"
      "0.923394,0.923394,0.923394,0.923394,2.2182,2.2182,2.2182,2.2182,"
      "1.25431,1.25431,1.25431,1.25431,1.88728,1.88728,1.88728,1.88728,"
      "0.745969,0.745969,0.745969,0.745969,2.39562,2.39562,2.39562,"
      "2.39562,0.923394,0.923394,0.923394,0.923394,2.2182,2.2182,2.2182,"
      "2.2182,0.745969,0.745969,0.745969,0.745969,2.39562,2.39562,2.39562,"
      "2.39562,1.13309,1.13309,1.13309,1.13309,2.0085,2.0085,2.0085,"
      "2.0085,0.965057,0.965057,0.965057,0.965057,2.17654,2.17654,2.17654,"
      "2.17654,1.13309,1.13309,1.13309,1.13309,2.0085,2.0085,2.0085,"
      "2.0085,0.789242,0.789242,0.789242,0.789242,2.35235,2.35235,2.35235,"
      "2.35235,0.965057,0.965057,0.965057,0.965057,2.17654,2.17654,"
      "2.17654,2.17654,0.789242,0.789242,0.789242,0.789242,2.35235,"
      "2.35235,2.35235,2.35235";
  Eigen::VectorXd H_phi_ref = ReadVectorFromString(H_phi_ref_string);

  std::string H_theta_ref_string =
      "0,3.14159,1.5708,-1.5708,0,0,1.5708,-1.5708,1.5708,"
      "-1.5708,0,3.14159,0,3.14159,0.785398,2.35619,-0.785398,-2.35619,"
      "0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,"
      "-2.35619,0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,"
      "-0.785398,-2.35619,1.53364,1.60796,-1.53364,-1.60796,1.53364,"
      "1.60796,-1.53364,-1.60796,0.0371605,3.10443,-0.0371605,-3.10443,"
      "0.0371605,3.10443,-0.0371605,-3.10443,0.785398,2.35619,-0.785398,"
      "-2.35619,0.785398,2.35619,-0.785398,-2.35619,1.47888,1.66271,"
      "-1.47888,-1.66271,1.47888,1.66271,-1.47888,-1.66271,0.0919142,"
      "3.04968,-0.0919142,-3.04968,0.0919142,3.04968,-0.0919142,-3.04968,"
      "0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,"
      "-2.35619,1.41524,1.72636,-1.41524,-1.72636,1.41524,1.72636,"
      "-1.41524,-1.72636,0.155561,2.98603,-0.155561,-2.98603,0.155561,"
      "2.98603,-0.155561,-2.98603,0.785398,2.35619,-0.785398,-2.35619,"
      "0.785398,2.35619,-0.785398,-2.35619,1.34542,1.79617,-1.34542,"
      "-1.79617,1.34542,1.79617,-1.34542,-1.79617,0.225375,2.91622,"
      "-0.225375,-2.91622,0.225375,2.91622,-0.225375,-2.91622,0.785398,"
      "2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,"
      "1.2701,1.87149,-1.2701,-1.87149,1.2701,1.87149,-1.2701,-1.87149,"
      "0.300693,2.8409,-0.300693,-2.8409,0.300693,2.8409,-0.300693,"
      "-2.8409,0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,"
      "-0.785398,-2.35619,1.18903,1.95256,-1.18903,-1.95256,1.18903,"
      "1.95256,-1.18903,-1.95256,0.381766,2.75983,-0.381766,-2.75983,"
      "0.381766,2.75983,-0.381766,-2.75983,0.785398,2.35619,-0.785398,"
      "-2.35619,0.785398,2.35619,-0.785398,-2.35619,1.1014,2.04019,"
      "-1.1014,-2.04019,1.1014,2.04019,-1.1014,-2.04019,0.469397,2.6722,"
      "-0.469397,-2.6722,0.469397,2.6722,-0.469397,-2.6722,0.785398,"
      "2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,"
      "1.006,2.13559,-1.006,-2.13559,1.006,2.13559,-1.006,-2.13559,"
      "0.564797,2.5768,-0.564797,-2.5768,0.564797,2.5768,-0.564797,"
      "-2.5768,0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,"
      "-0.785398,-2.35619,0.901275,2.24032,-0.901275,-2.24032,0.901275,"
      "2.24032,-0.901275,-2.24032,0.669522,2.47207,-0.669522,-2.47207,"
      "0.669522,2.47207,-0.669522,-2.47207,0.785398,2.35619,-0.785398,"
      "-2.35619,0.785398,2.35619,-0.785398,-2.35619,0.656433,2.48516,"
      "-0.656433,-2.48516,0.656433,2.48516,-0.656433,-2.48516,0.914364,"
      "2.22723,-0.914364,-2.22723,0.914364,2.22723,-0.914364,-2.22723,"
      "0.785398,2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,"
      "-2.35619,0.512718,2.62887,-0.512718,-2.62887,0.512718,2.62887,"
      "-0.512718,-2.62887,1.05808,2.08351,-1.05808,-2.08351,1.05808,"
      "2.08351,-1.05808,-2.08351,0.785398,2.35619,-0.785398,-2.35619,"
      "0.785398,2.35619,-0.785398,-2.35619,0.353657,2.78794,-0.353657,"
      "-2.78794,0.353657,2.78794,-0.353657,-2.78794,1.21714,1.92445,"
      "-1.21714,-1.92445,1.21714,1.92445,-1.21714,-1.92445,0.785398,"
      "2.35619,-0.785398,-2.35619,0.785398,2.35619,-0.785398,-2.35619,"
      "0.180991,2.9606,-0.180991,-2.9606,0.180991,2.9606,-0.180991,"
      "-2.9606,1.38981,1.75179,-1.38981,-1.75179,1.38981,1.75179,-1.38981,"
      "-1.75179,1.46335,1.67824,-1.46335,-1.67824,0.107445,3.03415,"
      "-0.107445,-3.03415,0,3.14159,0,3.14159,0,3.14159,0,3.14159,"
      "1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,"
      "1.30963,1.83196,-1.30963,-1.83196,0.261166,2.88043,-0.261166,"
      "-2.88043,0,3.14159,0,3.14159,0,3.14159,0,3.14159,1.5708,-1.5708,"
      "1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,1.14035,2.00124,"
      "-1.14035,-2.00124,0.430445,2.71115,-0.430445,-2.71115,0,3.14159,0,"
      "3.14159,0,3.14159,0,3.14159,1.5708,-1.5708,1.5708,-1.5708,1.5708,"
      "-1.5708,1.5708,-1.5708,0.964246,2.17735,-0.964246,-2.17735,"
      "0.606551,2.53504,-0.606551,-2.53504,0,3.14159,0,3.14159,0,"
      "3.14159,0,3.14159,1.5708,-1.5708,1.5708,-1.5708,1.5708,-1.5708,"
      "1.5708,-1.5708,0.178363,2.96323,-0.178363,-2.96323,0.178363,"
      "2.96323,-0.178363,-2.96323,0.0529688,3.08862,-0.0529688,-3.08862,"
      "0.0529688,3.08862,-0.0529688,-3.08862,1.39243,1.74916,-1.39243,"
      "-1.74916,1.39243,1.74916,-1.39243,-1.74916,0.286028,2.85557,"
      "-0.286028,-2.85557,0.286028,2.85557,-0.286028,-2.85557,1.51783,"
      "1.62377,-1.51783,-1.62377,1.51783,1.62377,-1.51783,-1.62377,"
      "1.28477,1.85682,-1.28477,-1.85682,1.28477,1.85682,-1.28477,"
      "-1.85682,0.251779,2.88981,-0.251779,-2.88981,0.251779,2.88981,"
      "-0.251779,-2.88981,0.115405,3.02619,-0.115405,-3.02619,0.115405,"
      "3.02619,-0.115405,-3.02619,1.31902,1.82257,-1.31902,-1.82257,"
      "1.31902,1.82257,-1.31902,-1.82257,0.423381,2.71821,-0.423381,"
      "-2.71821,0.423381,2.71821,-0.423381,-2.71821,1.45539,1.6862,"
      "-1.45539,-1.6862,1.45539,1.6862,-1.45539,-1.6862,1.14742,1.99418,"
      "-1.14742,-1.99418,1.14742,1.99418,-1.14742,-1.99418,0.342718,"
      "2.79887,-0.342718,-2.79887,0.342718,2.79887,-0.342718,-2.79887,"
      "0.0627328,3.07886,-0.0627328,-3.07886,0.0627328,3.07886,-0.0627328,"
      "-3.07886,1.22808,1.91351,-1.22808,-1.91351,1.22808,1.91351,"
      "-1.22808,-1.91351,0.174267,2.96733,-0.174267,-2.96733,0.174267,"
      "2.96733,-0.174267,-2.96733,1.50806,1.63353,-1.50806,-1.63353,"
      "1.50806,1.63353,-1.50806,-1.63353,1.39653,1.74506,-1.39653,"
      "-1.74506,1.39653,1.74506,-1.39653,-1.74506,0.328175,2.81342,"
      "-0.328175,-2.81342,0.328175,2.81342,-0.328175,-2.81342,0.185234,"
      "2.95636,-0.185234,-2.95636,0.185234,2.95636,-0.185234,-2.95636,"
      "1.24262,1.89897,-1.24262,-1.89897,1.24262,1.89897,-1.24262,"
      "-1.89897,0.5031,2.63849,-0.5031,-2.63849,0.5031,2.63849,-0.5031,"
      "-2.63849,1.38556,1.75603,-1.38556,-1.75603,1.38556,1.75603,"
      "-1.38556,-1.75603,1.0677,2.0739,-1.0677,-2.0739,1.0677,2.0739,"
      "-1.0677,-2.0739,0.424748,2.71684,-0.424748,-2.71684,0.424748,"
      "2.71684,-0.424748,-2.71684,0.133791,3.0078,-0.133791,-3.0078,"
      "0.133791,3.0078,-0.133791,-3.0078,1.14605,1.99554,-1.14605,"
      "-1.99554,1.14605,1.99554,-1.14605,-1.99554,0.289247,2.85235,"
      "-0.289247,-2.85235,0.289247,2.85235,-0.289247,-2.85235,1.43701,"
      "1.70459,-1.43701,-1.70459,1.43701,1.70459,-1.43701,-1.70459,"
      "1.28155,1.86004,-1.28155,-1.86004,1.28155,1.86004,-1.28155,"
      "-1.86004,0.408175,2.73342,-0.408175,-2.73342,0.408175,2.73342,"
      "-0.408175,-2.73342,0.26203,2.87956,-0.26203,-2.87956,0.26203,"
      "2.87956,-0.26203,-2.87956,1.16262,1.97897,-1.16262,-1.97897,"
      "1.16262,1.97897,-1.16262,-1.97897,0.555112,2.58648,-0.555112,"
      "-2.58648,0.555112,2.58648,-0.555112,-2.58648,1.30877,1.83283,"
      "-1.30877,-1.83283,1.30877,1.83283,-1.30877,-1.83283,1.01568,"
      "2.12591,-1.01568,-2.12591,1.01568,2.12591,-1.01568,-2.12591,"
      "0.516907,2.62469,-0.516907,-2.62469,0.516907,2.62469,-0.516907,"
      "-2.62469,0.0720963,3.0695,-0.0720963,-3.0695,0.0720963,3.0695,"
      "-0.0720963,-3.0695,1.05389,2.0877,-1.05389,-2.0877,1.05389,2.0877,"
      "-1.05389,-2.0877,0.12637,3.01522,-0.12637,-3.01522,0.12637,3.01522,"
      "-0.12637,-3.01522,1.4987,1.64289,-1.4987,-1.64289,1.4987,1.64289,"
      "-1.4987,-1.64289,1.44443,1.69717,-1.44443,-1.69717,1.44443,1.69717,"
      "-1.44443,-1.69717,0.50866,2.63293,-0.50866,-2.63293,0.50866,"
      "2.63293,-0.50866,-2.63293,0.213155,2.92844,-0.213155,-2.92844,"
      "0.213155,2.92844,-0.213155,-2.92844,1.06214,2.07946,-1.06214,"
      "-2.07946,1.06214,2.07946,-1.06214,-2.07946,0.370264,2.77133,"
      "-0.370264,-2.77133,0.370264,2.77133,-0.370264,-2.77133,1.35764,"
      "1.78395,-1.35764,-1.78395,1.35764,1.78395,-1.35764,-1.78395,"
      "1.20053,1.94106,-1.20053,-1.94106,1.20053,1.94106,-1.20053,"
      "-1.94106,0.492657,2.64894,-0.492657,-2.64894,0.492657,2.64894,"
      "-0.492657,-2.64894,0.346255,2.79534,-0.346255,-2.79534,0.346255,"
      "2.79534,-0.346255,-2.79534,1.07814,2.06345,-1.07814,-2.06345,"
      "1.07814,2.06345,-1.07814,-2.06345,0.591759,2.54983,-0.591759,"
      "-2.54983,0.591759,2.54983,-0.591759,-2.54983,1.22454,1.91705,"
      "-1.22454,-1.91705,1.22454,1.91705,-1.22454,-1.91705,0.979037,"
      "2.16256,-0.979037,-2.16256,0.979037,2.16256,-0.979037,-2.16256,"
      "0.603823,2.53777,-0.603823,-2.53777,0.603823,2.53777,-0.603823,"
      "-2.53777,0.154034,2.98756,-0.154034,-2.98756,0.154034,2.98756,"
      "-0.154034,-2.98756,0.966973,2.17462,-0.966973,-2.17462,0.966973,"
      "2.17462,-0.966973,-2.17462,0.221407,2.92019,-0.221407,-2.92019,"
      "0.221407,2.92019,-0.221407,-2.92019,1.41676,1.72483,-1.41676,"
      "-1.72483,1.41676,1.72483,-1.41676,-1.72483,1.34939,1.7922,-1.34939,"
      "-1.7922,1.34939,1.7922,-1.34939,-1.7922,0.595792,2.5458,-0.595792,"
      "-2.5458,0.595792,2.5458,-0.595792,-2.5458,0.301666,2.83993,"
      "-0.301666,-2.83993,0.301666,2.83993,-0.301666,-2.83993,0.975004,"
      "2.16659,-0.975004,-2.16659,0.975004,2.16659,-0.975004,-2.16659,"
      "0.430278,2.71132,-0.430278,-2.71132,0.430278,2.71132,-0.430278,"
      "-2.71132,1.26913,1.87246,-1.26913,-1.87246,1.26913,1.87246,"
      "-1.26913,-1.87246,1.14052,2.00107,-1.14052,-2.00107,1.14052,"
      "2.00107,-1.14052,-2.00107,0.582743,2.55885,-0.582743,-2.55885,"
      "0.582743,2.55885,-0.582743,-2.55885,0.438966,2.70263,-0.438966,"
      "-2.70263,0.438966,2.70263,-0.438966,-2.70263,0.988054,2.15354,"
      "-0.988054,-2.15354,0.988054,2.15354,-0.988054,-2.15354,0.618979,"
      "2.52261,-0.618979,-2.52261,0.618979,2.52261,-0.618979,-2.52261,"
      "1.13183,2.00976,-1.13183,-2.00976,1.13183,2.00976,-1.13183,"
      "-2.00976,0.951818,2.18978,-0.951818,-2.18978,0.951818,2.18978,"
      "-0.951818,-2.18978,0.695477,2.44612,-0.695477,-2.44612,0.695477,"
      "2.44612,-0.695477,-2.44612,0.0836579,3.05793,-0.0836579,-3.05793,"
      "0.0836579,3.05793,-0.0836579,-3.05793,0.875319,2.26627,-0.875319,"
      "-2.26627,0.875319,2.26627,-0.875319,-2.26627,0.100137,3.04146,"
      "-0.100137,-3.04146,0.100137,3.04146,-0.100137,-3.04146,1.48714,"
      "1.65445,-1.48714,-1.65445,1.48714,1.65445,-1.48714,-1.65445,"
      "1.47066,1.67093,-1.47066,-1.67093,1.47066,1.67093,-1.47066,"
      "-1.67093,0.692794,2.4488,-0.692794,-2.4488,0.692794,2.4488,"
      "-0.692794,-2.4488,0.247173,2.89442,-0.247173,-2.89442,0.247173,"
      "2.89442,-0.247173,-2.89442,0.878003,2.26359,-0.878003,-2.26359,"
      "0.878003,2.26359,-0.878003,-2.26359,0.295122,2.84647,-0.295122,"
      "-2.84647,0.295122,2.84647,-0.295122,-2.84647,1.32362,1.81797,"
      "-1.32362,-1.81797,1.32362,1.81797,-1.32362,-1.81797,1.27567,"
      "1.86592,-1.27567,-1.86592,1.27567,1.86592,-1.27567,-1.86592,"
      "0.687536,2.45406,-0.687536,-2.45406,0.687536,2.45406,-0.687536,"
      "-2.45406,0.400826,2.74077,-0.400826,-2.74077,0.400826,2.74077,"
      "-0.400826,-2.74077,0.88326,2.25833,-0.88326,-2.25833,0.88326,"
      "2.25833,-0.88326,-2.25833,0.476391,2.6652,-0.476391,-2.6652,"
      "0.476391,2.6652,-0.476391,-2.6652,1.16997,1.97162,-1.16997,"
      "-1.97162,1.16997,1.97162,-1.16997,-1.97162,1.09441,2.04719,"
      "-1.09441,-2.04719,1.09441,2.04719,-1.09441,-2.04719,0.679796,"
      "2.4618,-0.679796,-2.4618,0.679796,2.4618,-0.679796,-2.4618,"
      "0.541707,2.59989,-0.541707,-2.59989,0.541707,2.59989,-0.541707,"
      "-2.59989,0.891,2.25059,-0.891,-2.25059,0.891,2.25059,-0.891,"
      "-2.25059,0.639936,2.50166,-0.639936,-2.50166,0.639936,2.50166,"
      "-0.639936,-2.50166,1.02909,2.1125,-1.02909,-2.1125,1.02909,2.1125,"
      "-1.02909,-2.1125,0.93086,2.21073,-0.93086,-2.21073,0.93086,2.21073,"
      "-0.93086,-2.21073";
  Eigen::VectorXd H_theta_ref = ReadVectorFromString(H_theta_ref_string);

  std::string H_weight_ref_string =
      "0.00138882,0.00138882,0.00138882,0.00138882,0.00138882,"
      "0.00138882,0.0115676,0.0115676,0.0115676,0.0115676,0.0115676,"
      "0.0115676,0.0115676,0.0115676,0.0115676,0.0115676,0.0115676,"
      "0.0115676,0.0114771,0.0114771,0.0114771,0.0114771,0.0114771,"
      "0.0114771,0.0114771,0.0114771,0.00463752,0.00463752,0.00463752,"
      "0.00463752,0.00463752,0.00463752,0.00463752,0.00463752,0.00463752,"
      "0.00463752,0.00463752,0.00463752,0.00463752,0.00463752,0.00463752,"
      "0.00463752,0.00463752,0.00463752,0.00463752,0.00463752,0.00463752,"
      "0.00463752,0.00463752,0.00463752,0.00704218,0.00704218,0.00704218,"
      "0.00704218,0.00704218,0.00704218,0.00704218,0.00704218,0.00704218,"
      "0.00704218,0.00704218,0.00704218,0.00704218,0.00704218,0.00704218,"
      "0.00704218,0.00704218,0.00704218,0.00704218,0.00704218,0.00704218,"
      "0.00704218,0.00704218,0.00704218,0.00862719,0.00862719,0.00862719,"
      "0.00862719,0.00862719,0.00862719,0.00862719,0.00862719,0.00862719,"
      "0.00862719,0.00862719,0.00862719,0.00862719,0.00862719,0.00862719,"
      "0.00862719,0.00862719,0.00862719,0.00862719,0.00862719,0.00862719,"
      "0.00862719,0.00862719,0.00862719,0.00970166,0.00970166,0.00970166,"
      "0.00970166,0.00970166,0.00970166,0.00970166,0.00970166,0.00970166,"
      "0.00970166,0.00970166,0.00970166,0.00970166,0.00970166,0.00970166,"
      "0.00970166,0.00970166,0.00970166,0.00970166,0.00970166,0.00970166,"
      "0.00970166,0.00970166,0.00970166,0.010432,0.010432,0.010432,"
      "0.010432,0.010432,0.010432,0.010432,0.010432,0.010432,0.010432,"
      "0.010432,0.010432,0.010432,0.010432,0.010432,0.010432,0.010432,"
      "0.010432,0.010432,0.010432,0.010432,0.010432,0.010432,0.010432,"
      "0.010916,0.010916,0.010916,0.010916,0.010916,0.010916,0.010916,"
      "0.010916,0.010916,0.010916,0.010916,0.010916,0.010916,0.010916,"
      "0.010916,0.010916,0.010916,0.010916,0.010916,0.010916,0.010916,"
      "0.010916,0.010916,0.010916,0.0112181,0.0112181,0.0112181,0.0112181,"
      "0.0112181,0.0112181,0.0112181,0.0112181,0.0112181,0.0112181,"
      "0.0112181,0.0112181,0.0112181,0.0112181,0.0112181,0.0112181,"
      "0.0112181,0.0112181,0.0112181,0.0112181,0.0112181,0.0112181,"
      "0.0112181,0.0112181,0.0113862,0.0113862,0.0113862,0.0113862,"
      "0.0113862,0.0113862,0.0113862,0.0113862,0.0113862,0.0113862,"
      "0.0113862,0.0113862,0.0113862,0.0113862,0.0113862,0.0113862,"
      "0.0113862,0.0113862,0.0113862,0.0113862,0.0113862,0.0113862,"
      "0.0113862,0.0113862,0.0114603,0.0114603,0.0114603,0.0114603,"
      "0.0114603,0.0114603,0.0114603,0.0114603,0.0114603,0.0114603,"
      "0.0114603,0.0114603,0.0114603,0.0114603,0.0114603,0.0114603,"
      "0.0114603,0.0114603,0.0114603,0.0114603,0.0114603,0.0114603,"
      "0.0114603,0.0114603,0.0114715,0.0114715,0.0114715,0.0114715,"
      "0.0114715,0.0114715,0.0114715,0.0114715,0.0114715,0.0114715,"
      "0.0114715,0.0114715,0.0114715,0.0114715,0.0114715,0.0114715,"
      "0.0114715,0.0114715,0.0114715,0.0114715,0.0114715,0.0114715,"
      "0.0114715,0.0114715,0.011474,0.011474,0.011474,0.011474,0.011474,"
      "0.011474,0.011474,0.011474,0.011474,0.011474,0.011474,0.011474,"
      "0.011474,0.011474,0.011474,0.011474,0.011474,0.011474,0.011474,"
      "0.011474,0.011474,0.011474,0.011474,0.011474,0.0115018,0.0115018,"
      "0.0115018,0.0115018,0.0115018,0.0115018,0.0115018,0.0115018,"
      "0.0115018,0.0115018,0.0115018,0.0115018,0.0115018,0.0115018,"
      "0.0115018,0.0115018,0.0115018,0.0115018,0.0115018,0.0115018,"
      "0.0115018,0.0115018,0.0115018,0.0115018,0.0115453,0.0115453,"
      "0.0115453,0.0115453,0.0115453,0.0115453,0.0115453,0.0115453,"
      "0.0115453,0.0115453,0.0115453,0.0115453,0.0115453,0.0115453,"
      "0.0115453,0.0115453,0.0115453,0.0115453,0.0115453,0.0115453,"
      "0.0115453,0.0115453,0.0115453,0.0115453,0.00650558,0.00650558,"
      "0.00650558,0.00650558,0.00650558,0.00650558,0.00650558,0.00650558,"
      "0.00650558,0.00650558,0.00650558,0.00650558,0.00650558,0.00650558,"
      "0.00650558,0.00650558,0.00650558,0.00650558,0.00650558,0.00650558,"
      "0.00650558,0.00650558,0.00650558,0.00650558,0.00921259,0.00921259,"
      "0.00921259,0.00921259,0.00921259,0.00921259,0.00921259,0.00921259,"
      "0.00921259,0.00921259,0.00921259,0.00921259,0.00921259,0.00921259,"
      "0.00921259,0.00921259,0.00921259,0.00921259,0.00921259,0.00921259,"
      "0.00921259,0.00921259,0.00921259,0.00921259,0.0106352,0.0106352,"
      "0.0106352,0.0106352,0.0106352,0.0106352,0.0106352,0.0106352,"
      "0.0106352,0.0106352,0.0106352,0.0106352,0.0106352,0.0106352,"
      "0.0106352,0.0106352,0.0106352,0.0106352,0.0106352,0.0106352,"
      "0.0106352,0.0106352,0.0106352,0.0106352,0.0113488,0.0113488,"
      "0.0113488,0.0113488,0.0113488,0.0113488,0.0113488,0.0113488,"
      "0.0113488,0.0113488,0.0113488,0.0113488,0.0113488,0.0113488,"
      "0.0113488,0.0113488,0.0113488,0.0113488,0.0113488,0.0113488,"
      "0.0113488,0.0113488,0.0113488,0.0113488,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,0.00815027,"
      "0.00815027,0.00815027,0.00815027,0.00815027,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,0.00934314,"
      "0.00934314,0.00934314,0.00934314,0.00934314,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,0.0100512,"
      "0.0100512,0.0100512,0.0100512,0.0100512,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,0.0101809,"
      "0.0101809,0.0101809,0.0101809,0.0101809,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,0.0106605,"
      "0.0106605,0.0106605,0.0106605,0.0106605,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,0.0107522,"
      "0.0107522,0.0107522,0.0107522,0.0107522,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,0.0110624,"
      "0.0110624,0.0110624,0.0110624,0.0110624,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,0.0110723,"
      "0.0110723,0.0110723,0.0110723,0.0110723,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,0.0111216,"
      "0.0111216,0.0111216,0.0111216,0.0111216,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,0.0113366,"
      "0.0113366,0.0113366,0.0113366,0.0113366,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,0.0113224,"
      "0.0113224,0.0113224,0.0113224,0.0113224,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,0.0113383,"
      "0.0113383,0.0113383,0.0113383,0.0113383,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,0.0115083,"
      "0.0115083,0.0115083,0.0115083,0.0115083,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,0.0114751,"
      "0.0114751,0.0114751,0.0114751,0.0114751,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,0.0114452,"
      "0.0114452,0.0114452,0.0114452,0.0114452,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,0.0114426,"
      "0.0114426,0.0114426,0.0114426,0.0114426";
  Eigen::VectorXd H_weight_ref = ReadVectorFromString(H_weight_ref_string);
  BOOST_CHECK_EQUAL(Gegrid.phi.size(), Ge_phi_ref.size());
  BOOST_CHECK_EQUAL(Gegrid.theta.size(), Ge_theta_ref.size());
  BOOST_CHECK_EQUAL(Gegrid.weight.size(), Ge_weight_ref.size());
  BOOST_CHECK_EQUAL(Hgrid.phi.size(), H_phi_ref.size());
  BOOST_CHECK_EQUAL(Hgrid.theta.size(), H_theta_ref.size());
  BOOST_CHECK_EQUAL(Hgrid.weight.size(), H_weight_ref.size());

  bool Gephi = Ge_phi_ref.isApprox(Gegrid.phi, 0.001);
  bool Getheta = Ge_theta_ref.isApprox(Gegrid.theta, 0.001);
  if (!Gephi || !Getheta) {
    std::cout << "phi_ref : Phi_comp | theta_ref : theta_comp" << std::endl;
    for (Index i = 0; i < Ge_phi_ref.size(); i++) {
      std::cout << Gegrid.phi[i] << ":" << Ge_phi_ref[i] << " | "
                << Gegrid.theta[i] << ":" << Ge_theta_ref[i] << std::endl;
    }
  }

  bool Geweight = Ge_weight_ref.isApprox(Gegrid.weight, 0.0001);
  BOOST_CHECK_EQUAL(Gephi, true);
  BOOST_CHECK_EQUAL(Getheta, true);
  BOOST_CHECK_EQUAL(Geweight, true);

  bool Hphi = H_phi_ref.isApprox(Hgrid.phi, 0.001);
  bool Htheta = H_theta_ref.isApprox(Hgrid.theta, 0.001);
  bool Hweight = H_weight_ref.isApprox(Hgrid.weight, 0.0001);
  BOOST_CHECK_EQUAL(Hphi, true);
  BOOST_CHECK_EQUAL(Htheta, true);
  BOOST_CHECK_EQUAL(Hweight, true);
}

BOOST_AUTO_TEST_SUITE_END()