/[PAMELA software]/DarthVader/TrackerLevel2/inc/F77/common_reduction.f
ViewVC logotype

Annotation of /DarthVader/TrackerLevel2/inc/F77/common_reduction.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations) (download)
Tue Sep 5 12:52:20 2006 UTC (18 years, 3 months ago) by pam-fi
Branch: MAIN
CVS Tags: v2r00BETA
Changes since 1.2: +19 -45 lines
implemented class TrkLevel1

1 mocchiut 1.1
2    
3     ************************************************************************
4     *
5     * Common common_reduction.f
6     *
7     * contains variables used only in the execution of reduction
8     *
9     * to be included in:
10     * - reduction.f
11     *
12     *
13     *************************************************************************
14    
15     real adc(nviews,nva1_view,nstrips_va1)
16     common/adc_value/adc
17    
18     c------------------------------------------------------------------------
19     c
20     c common noise computation
21     c
22     c------------------------------------------------------------------------
23 pam-fi 1.2 parameter (scut=4.)!(scut=3.)
24 pam-fi 1.3 parameter (NSTRIPMIN=10)!(NSTRIPMIN=64)!(NSTRIPMIN=10)!TEMPORANEO
25 pam-fi 1.2
26     real cn(nviews,nva1_view) ! common noise values
27 pam-fi 1.3 integer cnn(nviews,nva1_view) ! >0 = number of strips used for cn computation
28     c 0 = failed (less than NSTRIPMIN strips used) => temporarily masked
29     c -1 = masked a-priori
30 pam-fi 1.2 integer mask_vk_ev(nviews,nva1_view) ! mask of VA1s, local to the event (set to 0 if CN computation fails)
31 mocchiut 1.1
32     integer clstr(nviews,nva1_view,nstrips_va1) !flag matrix to mark
33     ! strips with signal and exclude them from
34     ! common noise computation
35     integer strange(nviews,nva1_view,nstrips_va1) !flag matrix to mark
36     ! strips with unusually high or low signal and
37     ! exclude them from common noise computation
38    
39 pam-fi 1.3 common/cn/cn,cnn,mask_vk_ev,clstr,strange
40 mocchiut 1.1
41     c------------------------------------------------------------------------
42     c
43     c common noise inclusion cut
44     c
45     c------------------------------------------------------------------------
46     parameter (cnincut=2.) !cut to include strips in cluster definition
47     ! during common noise computation
48     c------------------------------------------------------------------------
49     c
50     c some common for reductionflight
51     c
52     c------------------------------------------------------------------------
53 pam-fi 1.3
54     c parameter (nclstrmax=1000) !maximum number of clusters per event
55    
56 mocchiut 1.1 integer ind
57     real value(nstrips_view) !per trovare i cluster
58     real clseedcut(nstrips_view)
59     real clinclcut(nstrips_view)
60     common/searchcluster/value,clseedcut,clinclcut,ind
61    
62 pam-fi 1.3 c added by Elena (08/2006)
63     integer nclstr_view !number of clusters per view
64     integer ladder_view(nclstrmax) !ladder the strip carrying the largest signal
65     ! value belongs to
66     integer maxs_view(nclstrmax) !cluster strip carrying the largest signal value
67     integer mult_view(nclstrmax) !cluster multiplicity
68     integer rmax_view(nclstrmax)
69     integer lmax_view(nclstrmax)
70     common/clustersperview/nclstr_view,ladder_view,maxs_view
71     $ ,mult_view,rmax_view,lmax_view
72    
73 mocchiut 1.1 integer nshowers
74     logical flag_shower
75     common/shower/nshowers,flag_shower

  ViewVC Help
Powered by ViewVC 1.1.23