]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HBTP/common_event_summary.inc
renamed CorrectionMatrix class
[u/mrichter/AliRoot.git] / HBTP / common_event_summary.inc
CommitLineData
18448239 1CCC common/event_summary/
2C
3C This common block includes the following data:
4C
5C o Event processing summary and diagnostic information
6C o Chi-Square values
7
8 integer*4 max_events ! Limit on stored values, this is NOT
9C ! a limit on the number of events that
10C ! can be processed in the input event
11C ! text file.
88cb7938 12 parameter (max_events = 10000)
18448239 13
14 common/event_summary/
15 1num_iter(max_events), niter_mean, niter_rms,
16 2n_part_used_1_store(max_events), npart1_mean, npart1_rms,
17 3n_part_used_2_store(max_events), npart2_mean, npart2_rms,
18 4n_part_tot_store(max_events), npart_tot_mean, npart_tot_rms,
19 5num_sec_flagged_store(max_events), nsec_flag_mean, nsec_flag_rms,
20 6frac_trks_out(max_events), frac_trks_out_mean,frac_trks_out_rms,
21 7frac_trks_flag(max_events),frac_trks_flag_mean,frac_trks_flag_rms,
22 8chisq_like_1d_store(max_events), chi_l1d_mean,chi_l1d_rms,
23 9chisq_unlike_1d_store(max_events), chi_u1d_mean,chi_u1d_rms,
24 1chisq_like_3d_fine_store(max_events), chi_l3f_mean,chi_l3f_rms,
25 2chisq_unlike_3d_fine_store(max_events), chi_u3f_mean,chi_u3f_rms,
26 3chisq_like_3d_coarse_store(max_events), chi_l3c_mean,chi_l3c_rms,
27 4chisq_unlike_3d_coarse_store(max_events),chi_u3c_mean,chi_u3c_rms,
28 5chisq_hist1_1_store(max_events), chi_1_1_mean, chi_1_1_rms,
29 6chisq_hist1_2_store(max_events), chi_1_2_mean, chi_1_2_rms,
30 7chisq_total_store(max_events), chi_tot_mean, chi_tot_rms
31
32CCC Variable Type Declarations:
33
34CCC Event processing summary and diagnostic information:
35
36 real*4 num_iter, niter_mean, niter_rms
37 real*4 n_part_used_1_store, npart1_mean, npart1_rms
38 real*4 n_part_used_2_store, npart2_mean, npart2_rms
39 real*4 n_part_tot_store, npart_tot_mean, npart_tot_rms
40 real*4 num_sec_flagged_store, nsec_flag_mean, nsec_flag_rms
41 real*4 frac_trks_out, frac_trks_out_mean,frac_trks_out_rms
42 real*4 frac_trks_flag,frac_trks_flag_mean,frac_trks_flag_rms
43
44CCC Chi-Square values:
45
46 real*4 chisq_like_1d_store, chi_l1d_mean,chi_l1d_rms
47 real*4 chisq_unlike_1d_store, chi_u1d_mean,chi_u1d_rms
48 real*4 chisq_like_3d_fine_store, chi_l3f_mean,chi_l3f_rms
49 real*4 chisq_unlike_3d_fine_store, chi_u3f_mean,chi_u3f_rms
50 real*4 chisq_like_3d_coarse_store, chi_l3c_mean,chi_l3c_rms
51 real*4 chisq_unlike_3d_coarse_store,chi_u3c_mean,chi_u3c_rms
52 real*4 chisq_hist1_1_store, chi_1_1_mean, chi_1_1_rms
53 real*4 chisq_hist1_2_store, chi_1_2_mean, chi_1_2_rms
54 real*4 chisq_total_store, chi_tot_mean, chi_tot_rms
55
56CCC END common/event_summary/