1 |
pam-fi |
1.1 |
* maximum numb. of doublets and troplets |
2 |
|
|
* to fill DEBUG nt-uple |
3 |
|
|
parameter (ndblt_max_nt=0.2*ndblt_max) !maximum number of doublets |
4 |
|
|
parameter (ntrpt_max_nt=0.2*ntrpt_max) !maximum number of triplets |
5 |
|
|
integer ndblt_nt,ntrpt_nt |
6 |
|
|
real |
7 |
|
|
$ alfayz1_nt(ndblt_max_nt), !Y0 |
8 |
|
|
$ alfayz2_nt(ndblt_max_nt) !tg theta-yz |
9 |
|
|
real |
10 |
|
|
$ alfaxz1_nt(ntrpt_max_nt), !X0 |
11 |
|
|
$ alfaxz2_nt(ntrpt_max_nt), !tg theta-xz |
12 |
|
|
$ alfaxz3_nt(ntrpt_max_nt) !1/r |
13 |
|
|
|
14 |
|
|
* ----------------------------------------------------------- |
15 |
|
|
* Number of YZ and XZ clouds |
16 |
|
|
integer nclouds_yz_nt,nclouds_xz_nt |
17 |
|
|
* ----------------------------------------------------------- |
18 |
|
|
* doublet and triplet ID in the selected clouds |
19 |
|
|
integer db_cloud_nt(ndblt_max_nt) |
20 |
|
|
integer tr_cloud_nt(ntrpt_max_nt) |
21 |
|
|
* ----------------------------------------------------------- |
22 |
|
|
* number of points in the cloud |
23 |
|
|
integer ptcloud_yz_nt(ncloyz_max) |
24 |
|
|
integer ptcloud_xz_nt(ncloxz_max) |
25 |
|
|
* ----------------------------------------------------------- |
26 |
|
|
* average parameters |
27 |
|
|
real alfayz1_av_nt(ncloyz_max),alfayz2_av_nt(ncloyz_max) |
28 |
|
|
real alfaxz1_av_nt(ncloxz_max),alfaxz2_av_nt(ncloxz_max) |
29 |
|
|
$ ,alfaxz3_av_nt(ncloxz_max) |
30 |
|
|
* ----------------------------------------------------------- |
31 |
|
|
|
32 |
|
|
c------------------------------------------------------------------------ |
33 |
|
|
c Added by David Fedele |
34 |
|
|
c |
35 |
|
|
c variable related to timing the software |
36 |
|
|
c------------------------------------------------------------------------ |
37 |
|
|
integer nclstr |
38 |
|
|
real totaltime |
39 |
|
|
real houghtime |
40 |
|
|
real fittime |
41 |
|
|
|
42 |
|
|
|
43 |
|
|
!commons for DEBUG nt-uple ! |
44 |
|
|
common/hough/ ! / / / / / / ! |
45 |
|
|
$ ndblt_nt ! / / / / / / ! |
46 |
|
|
$ ,alfayz1_nt,alfayz2_nt ! / / / / / / /! |
47 |
|
|
$ ,db_cloud_nt, !/ / / / / / / ! |
48 |
|
|
$ ntrpt_nt, ! / / / / / / ! |
49 |
|
|
$ alfaxz1_nt,alfaxz2_nt,alfaxz3_nt ! / / / / / / ! |
50 |
|
|
$ ,tr_cloud_nt ! / / / / / / /! |
51 |
|
|
$ ,nclouds_yz_nt !/ / / / / / / ! |
52 |
|
|
$ ,alfayz1_av_nt,alfayz2_av_nt ! / / / / / / ! |
53 |
|
|
$ ,ptcloud_yz_nt, ! / / / / / / ! |
54 |
|
|
$ nclouds_xz_nt ! / / / / / / /! |
55 |
|
|
$ ,alfaxz1_av_nt,alfaxz2_av_nt,alfaxz3_av_nt !/ / / / / / / ! |
56 |
|
|
$ ,ptcloud_xz_nt ! / / / / / / ! |
57 |
|
|
$ ,nclstr,totaltime,houghtime,fittime ! / / / / / / ! |