-
Notifications
You must be signed in to change notification settings - Fork 15
/
f90wrap_tbfitpy.f90
5132 lines (4502 loc) · 175 KB
/
f90wrap_tbfitpy.f90
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
! Module pyfit defined in file tbfitpy.f90
subroutine f90wrap_incar_py__get__flag_python_module(this, f90wrap_flag_python_module)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_python_module
this_ptr = transfer(this, this_ptr)
f90wrap_flag_python_module = this_ptr%p%flag_python_module
end subroutine f90wrap_incar_py__get__flag_python_module
subroutine f90wrap_incar_py__set__flag_python_module(this, f90wrap_flag_python_module)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_python_module
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_python_module = f90wrap_flag_python_module
end subroutine f90wrap_incar_py__set__flag_python_module
subroutine f90wrap_incar_py__get__flag_get_band(this, f90wrap_flag_get_band)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_get_band
this_ptr = transfer(this, this_ptr)
f90wrap_flag_get_band = this_ptr%p%flag_get_band
end subroutine f90wrap_incar_py__get__flag_get_band
subroutine f90wrap_incar_py__set__flag_get_band(this, f90wrap_flag_get_band)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_get_band
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_get_band = f90wrap_flag_get_band
end subroutine f90wrap_incar_py__set__flag_get_band
subroutine f90wrap_incar_py__get__flag_fit_degeneracy(this, f90wrap_flag_fit_degeneracy)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_fit_degeneracy
this_ptr = transfer(this, this_ptr)
f90wrap_flag_fit_degeneracy = this_ptr%p%flag_fit_degeneracy
end subroutine f90wrap_incar_py__get__flag_fit_degeneracy
subroutine f90wrap_incar_py__set__flag_fit_degeneracy(this, f90wrap_flag_fit_degeneracy)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_fit_degeneracy
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_fit_degeneracy = f90wrap_flag_fit_degeneracy
end subroutine f90wrap_incar_py__set__flag_fit_degeneracy
subroutine f90wrap_incar_py__get__flag_report_geom(this, f90wrap_flag_report_geom)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_report_geom
this_ptr = transfer(this, this_ptr)
f90wrap_flag_report_geom = this_ptr%p%flag_report_geom
end subroutine f90wrap_incar_py__get__flag_report_geom
subroutine f90wrap_incar_py__set__flag_report_geom(this, f90wrap_flag_report_geom)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_report_geom
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_report_geom = f90wrap_flag_report_geom
end subroutine f90wrap_incar_py__set__flag_report_geom
subroutine f90wrap_incar_py__get__flag_phase(this, f90wrap_flag_phase)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_phase
this_ptr = transfer(this, this_ptr)
f90wrap_flag_phase = this_ptr%p%flag_phase
end subroutine f90wrap_incar_py__get__flag_phase
subroutine f90wrap_incar_py__set__flag_phase(this, f90wrap_flag_phase)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_phase
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_phase = f90wrap_flag_phase
end subroutine f90wrap_incar_py__set__flag_phase
subroutine f90wrap_incar_py__get__flag_tbfit(this, f90wrap_flag_tbfit)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_tbfit
this_ptr = transfer(this, this_ptr)
f90wrap_flag_tbfit = this_ptr%p%flag_tbfit
end subroutine f90wrap_incar_py__get__flag_tbfit
subroutine f90wrap_incar_py__set__flag_tbfit(this, f90wrap_flag_tbfit)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_tbfit
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_tbfit = f90wrap_flag_tbfit
end subroutine f90wrap_incar_py__set__flag_tbfit
subroutine f90wrap_incar_py__get__flag_tbfit_finish(this, f90wrap_flag_tbfit_finish)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_tbfit_finish
this_ptr = transfer(this, this_ptr)
f90wrap_flag_tbfit_finish = this_ptr%p%flag_tbfit_finish
end subroutine f90wrap_incar_py__get__flag_tbfit_finish
subroutine f90wrap_incar_py__set__flag_tbfit_finish(this, f90wrap_flag_tbfit_finish)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_tbfit_finish
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_tbfit_finish = f90wrap_flag_tbfit_finish
end subroutine f90wrap_incar_py__set__flag_tbfit_finish
subroutine f90wrap_incar_py__get__flag_print_only_target(this, f90wrap_flag_print_only_target)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_only_target
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_only_target = this_ptr%p%flag_print_only_target
end subroutine f90wrap_incar_py__get__flag_print_only_target
subroutine f90wrap_incar_py__set__flag_print_only_target(this, f90wrap_flag_print_only_target)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_only_target
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_only_target = f90wrap_flag_print_only_target
end subroutine f90wrap_incar_py__set__flag_print_only_target
subroutine f90wrap_incar_py__get__flag_print_energy_diff(this, f90wrap_flag_print_energy_diff)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_energy_diff
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_energy_diff = this_ptr%p%flag_print_energy_diff
end subroutine f90wrap_incar_py__get__flag_print_energy_diff
subroutine f90wrap_incar_py__set__flag_print_energy_diff(this, f90wrap_flag_print_energy_diff)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_energy_diff
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_energy_diff = f90wrap_flag_print_energy_diff
end subroutine f90wrap_incar_py__set__flag_print_energy_diff
subroutine f90wrap_incar_py__get__flag_print_orbital(this, f90wrap_flag_print_orbital)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_orbital
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_orbital = this_ptr%p%flag_print_orbital
end subroutine f90wrap_incar_py__get__flag_print_orbital
subroutine f90wrap_incar_py__set__flag_print_orbital(this, f90wrap_flag_print_orbital)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_orbital
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_orbital = f90wrap_flag_print_orbital
end subroutine f90wrap_incar_py__set__flag_print_orbital
subroutine f90wrap_incar_py__get__flag_get_orbital(this, f90wrap_flag_get_orbital)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_get_orbital
this_ptr = transfer(this, this_ptr)
f90wrap_flag_get_orbital = this_ptr%p%flag_get_orbital
end subroutine f90wrap_incar_py__get__flag_get_orbital
subroutine f90wrap_incar_py__set__flag_get_orbital(this, f90wrap_flag_get_orbital)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_get_orbital
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_get_orbital = f90wrap_flag_get_orbital
end subroutine f90wrap_incar_py__set__flag_get_orbital
subroutine f90wrap_incar_py__get__flag_print_mag(this, f90wrap_flag_print_mag)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_mag
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_mag = this_ptr%p%flag_print_mag
end subroutine f90wrap_incar_py__get__flag_print_mag
subroutine f90wrap_incar_py__set__flag_print_mag(this, f90wrap_flag_print_mag)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_mag
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_mag = f90wrap_flag_print_mag
end subroutine f90wrap_incar_py__set__flag_print_mag
subroutine f90wrap_incar_py__get__flag_print_single(this, f90wrap_flag_print_single)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_single
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_single = this_ptr%p%flag_print_single
end subroutine f90wrap_incar_py__get__flag_print_single
subroutine f90wrap_incar_py__set__flag_print_single(this, f90wrap_flag_print_single)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_single
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_single = f90wrap_flag_print_single
end subroutine f90wrap_incar_py__set__flag_print_single
subroutine f90wrap_incar_py__get__flag_local_charge(this, f90wrap_flag_local_charge)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_local_charge
this_ptr = transfer(this, this_ptr)
f90wrap_flag_local_charge = this_ptr%p%flag_local_charge
end subroutine f90wrap_incar_py__get__flag_local_charge
subroutine f90wrap_incar_py__set__flag_local_charge(this, f90wrap_flag_local_charge)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_local_charge
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_local_charge = f90wrap_flag_local_charge
end subroutine f90wrap_incar_py__set__flag_local_charge
subroutine f90wrap_incar_py__get__flag_collinear(this, f90wrap_flag_collinear)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_collinear
this_ptr = transfer(this, this_ptr)
f90wrap_flag_collinear = this_ptr%p%flag_collinear
end subroutine f90wrap_incar_py__get__flag_collinear
subroutine f90wrap_incar_py__set__flag_collinear(this, f90wrap_flag_collinear)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_collinear
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_collinear = f90wrap_flag_collinear
end subroutine f90wrap_incar_py__set__flag_collinear
subroutine f90wrap_incar_py__get__flag_noncollinear(this, f90wrap_flag_noncollinear)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_noncollinear
this_ptr = transfer(this, this_ptr)
f90wrap_flag_noncollinear = this_ptr%p%flag_noncollinear
end subroutine f90wrap_incar_py__get__flag_noncollinear
subroutine f90wrap_incar_py__set__flag_noncollinear(this, f90wrap_flag_noncollinear)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_noncollinear
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_noncollinear = f90wrap_flag_noncollinear
end subroutine f90wrap_incar_py__set__flag_noncollinear
subroutine f90wrap_incar_py__get__flag_soc(this, f90wrap_flag_soc)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_soc
this_ptr = transfer(this, this_ptr)
f90wrap_flag_soc = this_ptr%p%flag_soc
end subroutine f90wrap_incar_py__get__flag_soc
subroutine f90wrap_incar_py__set__flag_soc(this, f90wrap_flag_soc)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_soc
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_soc = f90wrap_flag_soc
end subroutine f90wrap_incar_py__set__flag_soc
subroutine f90wrap_incar_py__get__flag_plus_U(this, f90wrap_flag_plus_U)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_plus_U
this_ptr = transfer(this, this_ptr)
f90wrap_flag_plus_U = this_ptr%p%flag_plus_U
end subroutine f90wrap_incar_py__get__flag_plus_U
subroutine f90wrap_incar_py__set__flag_plus_U(this, f90wrap_flag_plus_U)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_plus_U
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_plus_U = f90wrap_flag_plus_U
end subroutine f90wrap_incar_py__set__flag_plus_U
subroutine f90wrap_incar_py__get__flag_scissor(this, f90wrap_flag_scissor)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_scissor
this_ptr = transfer(this, this_ptr)
f90wrap_flag_scissor = this_ptr%p%flag_scissor
end subroutine f90wrap_incar_py__get__flag_scissor
subroutine f90wrap_incar_py__set__flag_scissor(this, f90wrap_flag_scissor)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_scissor
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_scissor = f90wrap_flag_scissor
end subroutine f90wrap_incar_py__set__flag_scissor
subroutine f90wrap_incar_py__get__flag_print_proj(this, f90wrap_flag_print_proj)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_proj
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_proj = this_ptr%p%flag_print_proj
end subroutine f90wrap_incar_py__get__flag_print_proj
subroutine f90wrap_incar_py__set__flag_print_proj(this, f90wrap_flag_print_proj)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_proj
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_proj = f90wrap_flag_print_proj
end subroutine f90wrap_incar_py__set__flag_print_proj
subroutine f90wrap_incar_py__get__flag_print_proj_sum(this, f90wrap_flag_print_proj_sum)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_print_proj_sum
this_ptr = transfer(this, this_ptr)
f90wrap_flag_print_proj_sum = this_ptr%p%flag_print_proj_sum
end subroutine f90wrap_incar_py__get__flag_print_proj_sum
subroutine f90wrap_incar_py__set__flag_print_proj_sum(this, f90wrap_flag_print_proj_sum)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_print_proj_sum
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_print_proj_sum = f90wrap_flag_print_proj_sum
end subroutine f90wrap_incar_py__set__flag_print_proj_sum
subroutine f90wrap_incar_py__get__flag_plot_fit(this, f90wrap_flag_plot_fit)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_plot_fit
this_ptr = transfer(this, this_ptr)
f90wrap_flag_plot_fit = this_ptr%p%flag_plot_fit
end subroutine f90wrap_incar_py__get__flag_plot_fit
subroutine f90wrap_incar_py__set__flag_plot_fit(this, f90wrap_flag_plot_fit)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_plot_fit
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_plot_fit = f90wrap_flag_plot_fit
end subroutine f90wrap_incar_py__set__flag_plot_fit
subroutine f90wrap_incar_py__get__flag_plot(this, f90wrap_flag_plot)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_plot
this_ptr = transfer(this, this_ptr)
f90wrap_flag_plot = this_ptr%p%flag_plot
end subroutine f90wrap_incar_py__get__flag_plot
subroutine f90wrap_incar_py__set__flag_plot(this, f90wrap_flag_plot)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_plot
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_plot = f90wrap_flag_plot
end subroutine f90wrap_incar_py__set__flag_plot
subroutine f90wrap_incar_py__get__flag_get_band_order(this, f90wrap_flag_get_band_order)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_get_band_order
this_ptr = transfer(this, this_ptr)
f90wrap_flag_get_band_order = this_ptr%p%flag_get_band_order
end subroutine f90wrap_incar_py__get__flag_get_band_order
subroutine f90wrap_incar_py__set__flag_get_band_order(this, f90wrap_flag_get_band_order)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_get_band_order
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_get_band_order = f90wrap_flag_get_band_order
end subroutine f90wrap_incar_py__set__flag_get_band_order
subroutine f90wrap_incar_py__get__flag_get_band_order_print_only(this, f90wrap_flag_get_band_order_print_only)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_get_band_order_print_only
this_ptr = transfer(this, this_ptr)
f90wrap_flag_get_band_order_print_only = this_ptr%p%flag_get_band_order_print_only
end subroutine f90wrap_incar_py__get__flag_get_band_order_print_only
subroutine f90wrap_incar_py__set__flag_get_band_order_print_only(this, f90wrap_flag_get_band_order_print_only)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_get_band_order_print_only
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_get_band_order_print_only = f90wrap_flag_get_band_order_print_only
end subroutine f90wrap_incar_py__set__flag_get_band_order_print_only
subroutine f90wrap_incar_py__get__flag_use_weight(this, f90wrap_flag_use_weight)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_use_weight
this_ptr = transfer(this, this_ptr)
f90wrap_flag_use_weight = this_ptr%p%flag_use_weight
end subroutine f90wrap_incar_py__get__flag_use_weight
subroutine f90wrap_incar_py__set__flag_use_weight(this, f90wrap_flag_use_weight)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_use_weight
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_use_weight = f90wrap_flag_use_weight
end subroutine f90wrap_incar_py__set__flag_use_weight
subroutine f90wrap_incar_py__get__flag_fit_orbital(this, f90wrap_flag_fit_orbital)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(out) :: f90wrap_flag_fit_orbital
this_ptr = transfer(this, this_ptr)
f90wrap_flag_fit_orbital = this_ptr%p%flag_fit_orbital
end subroutine f90wrap_incar_py__get__flag_fit_orbital
subroutine f90wrap_incar_py__set__flag_fit_orbital(this, f90wrap_flag_fit_orbital)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
logical, intent(in) :: f90wrap_flag_fit_orbital
this_ptr = transfer(this, this_ptr)
this_ptr%p%flag_fit_orbital = f90wrap_flag_fit_orbital
end subroutine f90wrap_incar_py__set__flag_fit_orbital
subroutine f90wrap_incar_py__get__ptol(this, f90wrap_ptol)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
real(8), intent(out) :: f90wrap_ptol
this_ptr = transfer(this, this_ptr)
f90wrap_ptol = this_ptr%p%ptol
end subroutine f90wrap_incar_py__get__ptol
subroutine f90wrap_incar_py__set__ptol(this, f90wrap_ptol)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
real(8), intent(in) :: f90wrap_ptol
this_ptr = transfer(this, this_ptr)
this_ptr%p%ptol = f90wrap_ptol
end subroutine f90wrap_incar_py__set__ptol
subroutine f90wrap_incar_py__get__ftol(this, f90wrap_ftol)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
real(8), intent(out) :: f90wrap_ftol
this_ptr = transfer(this, this_ptr)
f90wrap_ftol = this_ptr%p%ftol
end subroutine f90wrap_incar_py__get__ftol
subroutine f90wrap_incar_py__set__ftol(this, f90wrap_ftol)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
real(8), intent(in) :: f90wrap_ftol
this_ptr = transfer(this, this_ptr)
this_ptr%p%ftol = f90wrap_ftol
end subroutine f90wrap_incar_py__set__ftol
subroutine f90wrap_incar_py__get__fdiff(this, f90wrap_fdiff)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
real(8), intent(out) :: f90wrap_fdiff
this_ptr = transfer(this, this_ptr)
f90wrap_fdiff = this_ptr%p%fdiff
end subroutine f90wrap_incar_py__get__fdiff
subroutine f90wrap_incar_py__set__fdiff(this, f90wrap_fdiff)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
real(8), intent(in) :: f90wrap_fdiff
this_ptr = transfer(this, this_ptr)
this_ptr%p%fdiff = f90wrap_fdiff
end subroutine f90wrap_incar_py__set__fdiff
subroutine f90wrap_incar_py__get__nsystem(this, f90wrap_nsystem)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(out) :: f90wrap_nsystem
this_ptr = transfer(this, this_ptr)
f90wrap_nsystem = this_ptr%p%nsystem
end subroutine f90wrap_incar_py__get__nsystem
subroutine f90wrap_incar_py__set__nsystem(this, f90wrap_nsystem)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(in) :: f90wrap_nsystem
this_ptr = transfer(this, this_ptr)
this_ptr%p%nsystem = f90wrap_nsystem
end subroutine f90wrap_incar_py__set__nsystem
subroutine f90wrap_incar_py__get__lmmax(this, f90wrap_lmmax)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(out) :: f90wrap_lmmax
this_ptr = transfer(this, this_ptr)
f90wrap_lmmax = this_ptr%p%lmmax
end subroutine f90wrap_incar_py__get__lmmax
subroutine f90wrap_incar_py__set__lmmax(this, f90wrap_lmmax)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(in) :: f90wrap_lmmax
this_ptr = transfer(this, this_ptr)
this_ptr%p%lmmax = f90wrap_lmmax
end subroutine f90wrap_incar_py__set__lmmax
subroutine f90wrap_incar_py__get__miter(this, f90wrap_miter)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(out) :: f90wrap_miter
this_ptr = transfer(this, this_ptr)
f90wrap_miter = this_ptr%p%miter
end subroutine f90wrap_incar_py__get__miter
subroutine f90wrap_incar_py__set__miter(this, f90wrap_miter)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(in) :: f90wrap_miter
this_ptr = transfer(this, this_ptr)
this_ptr%p%miter = f90wrap_miter
end subroutine f90wrap_incar_py__set__miter
subroutine f90wrap_incar_py__get__mxfit(this, f90wrap_mxfit)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(out) :: f90wrap_mxfit
this_ptr = transfer(this, this_ptr)
f90wrap_mxfit = this_ptr%p%mxfit
end subroutine f90wrap_incar_py__get__mxfit
subroutine f90wrap_incar_py__set__mxfit(this, f90wrap_mxfit)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(in) :: f90wrap_mxfit
this_ptr = transfer(this, this_ptr)
this_ptr%p%mxfit = f90wrap_mxfit
end subroutine f90wrap_incar_py__set__mxfit
subroutine f90wrap_incar_py__array__nn_max(this, nd, dtype, dshape, dloc)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer, intent(out) :: nd
integer, intent(out) :: dtype
integer, dimension(10), intent(out) :: dshape
integer*8, intent(out) :: dloc
nd = 1
dtype = 5
this_ptr = transfer(this, this_ptr)
dshape(1:1) = shape(this_ptr%p%nn_max)
dloc = loc(this_ptr%p%nn_max)
end subroutine f90wrap_incar_py__array__nn_max
subroutine f90wrap_incar_py__get__ispin(this, f90wrap_ispin)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(out) :: f90wrap_ispin
this_ptr = transfer(this, this_ptr)
f90wrap_ispin = this_ptr%p%ispin
end subroutine f90wrap_incar_py__get__ispin
subroutine f90wrap_incar_py__set__ispin(this, f90wrap_ispin)
use pyfit, only: incar_py
implicit none
type incar_py_ptr_type
type(incar_py), pointer :: p => NULL()
end type incar_py_ptr_type
integer, intent(in) :: this(2)
type(incar_py_ptr_type) :: this_ptr
integer(4), intent(in) :: f90wrap_ispin
this_ptr = transfer(this, this_ptr)
this_ptr%p%ispin = f90wrap_ispin