| 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 |
| 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 |
* 2 = n.couples > ncouplemax |
| 60 |
* 3 = n.doublets > ndblt_max |
* 3 = n.doublets > ndblt_max |
| 61 |
* 4 = n.triplets > ntrpt_max |
* 4 = n.triplets > ntrpt_max |