| 19 |
c |
c |
| 20 |
c------------------------------------------------------------------------ |
c------------------------------------------------------------------------ |
| 21 |
|
|
| 22 |
* maximum (total) number of stored clusters |
* maximum (total) number of STORED clusters |
| 23 |
parameter (nclstrmax_level2 = nclstrmax) |
parameter (nclstrmax_level2 = nclstrmax) ! same as level1 |
|
c parameter (nclstrmax_level2=10*nplanes) |
|
|
c parameter (nclstrmax_level2=5*nplanes) |
|
| 24 |
|
|
| 25 |
* ----------------------------------------------------------- |
* ----------------------------------------------------------- |
| 26 |
* maximum number of cluster (per view) required to perform |
* maximum number of cluster (per view) required to perform |
| 27 |
* track serching with full Hough transform |
* track serching with full Hough transform |
| 28 |
parameter (nclustermax=6) |
* (singlets recovered during track refinement) |
| 29 |
|
parameter (nclusterlimit=6) |
| 30 |
|
* ----------------------------------------------------------- |
| 31 |
|
* maximum number of couples (per plane) required to perform |
| 32 |
|
* track serching with full Hough transform |
| 33 |
|
* (couples recovered during track refinement) |
| 34 |
|
parameter (ncouplelimit=8) |
| 35 |
|
|
| 36 |
* ----------------------------------------------------------- |
* ----------------------------------------------------------- |
| 37 |
* maximum number of couples per plane and total |
* maximum number of STORED couples, per plane and total |
| 38 |
* (only to dimension the vectors) |
* (to dimension the vectors) |
| 39 |
c parameter (ncouplemax=2*(nclstrmax_level2/nplanes)**2) |
c parameter (ncouplemax=2*(nclstrmax_level2/nplanes)**2) |
| 40 |
c parameter (ncouplemaxtot=ncouplemax*nplanes) |
c parameter (ncouplemaxtot=ncouplemax*nplanes) |
| 41 |
parameter (ncouplemax=nclustermax*nclustermax) |
parameter (ncouplemax = nclusterlimit*nclusterlimit) |
| 42 |
parameter (ncouplemaxtot=ncouplemax*nplanes) |
parameter (ncouplemaxtot = ncouplemax*nplanes) |
| 43 |
* ----------------------------------------------------------- |
* ----------------------------------------------------------- |
| 44 |
* maximum number of STORED couples |
* maximum number of STORED couples |
| 45 |
* (if the identified couples exceeds this number the |
* (if the identified couples exceeds this number the |
| 47 |
* tagged as not good) |
* tagged as not good) |
| 48 |
c parameter (ncp_max=10*nplanes) |
c parameter (ncp_max=10*nplanes) |
| 49 |
c parameter (ncp_max=10*nplanes) |
c parameter (ncp_max=10*nplanes) |
| 50 |
parameter (ncp_max=ncouplemaxtot) |
c parameter (ncp_max = ncouplemaxtot) |
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
* ----------------------------------------------------------- |
* ----------------------------------------------------------- |
| 55 |
* mask of views |
* mask of views |
| 56 |
* 0 = ok |
* 0 = ok |
| 57 |
* 1 = n.clusters > nclustermax |
* 1 = n.clusters > nclusterlimit |
| 58 |
|
* 8 = n.couples > ncouplelimit |
| 59 |
|
* 2 = n.couples > ncouplemax |
| 60 |
|
* 3 = n.doublets > ndblt_max |
| 61 |
|
* 4 = n.triplets > ntrpt_max |
| 62 |
|
* 5 = n.clouds yz > ncloyz_max |
| 63 |
|
* 6 = n.clouds xz > ncloxz_max |
| 64 |
|
* 7 = n.track candidates > NTRACKSMAX |
| 65 |
integer mask_view(nviews) |
integer mask_view(nviews) |
| 66 |
common/maskview/mask_view |
common/maskview/mask_view |
| 67 |
|
|
| 404 |
* maximum value of deflection from Hough transform |
* maximum value of deflection from Hough transform |
| 405 |
* accepted in order to perform the track fit |
* accepted in order to perform the track fit |
| 406 |
* ----------------------------------------------------- |
* ----------------------------------------------------- |
| 407 |
parameter (defmax=10000.) !GV-1 |
c parameter (defmax=10000.) !GV-1 |
| 408 |
|
parameter (defmax=100.) !GV-1 |
| 409 |
|
|
| 410 |
* ----------------------------------------------------- |
* ----------------------------------------------------- |
| 411 |
* cut to include new couple or single clusters in the |
* cut to include new couple or single clusters in the |
| 412 |
* track fitting, after the first fit |
* track fitting, after the first fit |
| 413 |
* ----------------------------------------------------- |
* ----------------------------------------------------- |
| 414 |
parameter (clinc=10) |
parameter (clinc=3) |
| 415 |
|
|
| 416 |
|
|
| 417 |
|
|