(file) Return to sos_pedestals.cmn CVS log (file) (dir) Up to [HallC] / Analyzer / INCLUDE

Diff for /Analyzer/INCLUDE/sos_pedestals.cmn between version 1.8 and 1.9

version 1.8, 1999/01/29 17:34:23 version 1.9, 1999/02/23 19:21:23
Line 2 
Line 2 
 *                      of pedestal events at the beginning of each run. *                      of pedestal events at the beginning of each run.
 * *
 * $Log$ * $Log$
   * Revision 1.9  1999/02/23 19:21:23  csa
   * (JRA) Add vars for improved pedestal calcs
   *
 * Revision 1.8  1999/01/29 17:34:23  saw * Revision 1.8  1999/01/29 17:34:23  saw
 * Add variables for second tubes on shower counter * Add variables for second tubes on shower counter
 * *
Line 61 
Line 64 
 *     CTPTYPE=parm *     CTPTYPE=parm
 * *
       integer*4 shodo_min_peds       integer*4 shodo_min_peds
         integer*4 shodo_pos_ped_limit(snum_scin_planes,snum_scin_elements)
         integer*4 shodo_neg_ped_limit(snum_scin_planes,snum_scin_elements)
 * *
       common/sos_scin_pedestals/       common/sos_scin_pedestals/
      &   shodo_pos_ped_sum2,  !sum of squares      &   shodo_pos_ped_sum2,  !sum of squares
Line 69 
Line 74 
      &   shodo_neg_ped_sum,   !sum of peds      &   shodo_neg_ped_sum,   !sum of peds
      &   shodo_pos_ped_num,   !number of peds      &   shodo_pos_ped_num,   !number of peds
      &   shodo_neg_ped_num,   !number of peds      &   shodo_neg_ped_num,   !number of peds
        &   shodo_pos_ped_limit, !max. allowed ped (reject hits during ped trig)
        &   shodo_neg_ped_limit, !max. allowed ped
      &   shodo_min_peds,      !# of peds required to override default pedestals      &   shodo_min_peds,      !# of peds required to override default pedestals
      &   shodo_new_sig_pos,      &   shodo_new_sig_pos,
      &   shodo_new_sig_neg,      &   shodo_new_sig_neg,
Line 110 
Line 117 
 *     CTPTYPE=parm *     CTPTYPE=parm
 * *
       integer*4 scal_min_peds       integer*4 scal_min_peds
         integer*4 scal_pos_ped_limit(smax_cal_blocks)
         integer*4 scal_neg_ped_limit(smax_cal_blocks)
 * *
       common/sos_cal_ped_stats/       common/sos_cal_ped_stats/
      &   scal_pos_ped_sum2,       !sum of squares      &   scal_pos_ped_sum2,       !sum of squares
Line 118 
Line 127 
      &   scal_neg_ped_sum,        !sum of peds      &   scal_neg_ped_sum,        !sum of peds
      &   scal_pos_ped_num,        !number of peds      &   scal_pos_ped_num,        !number of peds
      &   scal_neg_ped_num,        !number of peds      &   scal_neg_ped_num,        !number of peds
        &   scal_pos_ped_limit,      !max. allowed ped (reject hits during ped trig)
        &   scal_neg_ped_limit,      !max. allowed ped
      &   scal_min_peds,       !# of peds required to override default pedestals      &   scal_min_peds,       !# of peds required to override default pedestals
      &   scal_new_ped_pos,        !(new) calculated pedestals.      &   scal_new_ped_pos,        !(new) calculated pedestals.
      &   scal_new_ped_neg,        !(new) calculated pedestals.      &   scal_new_ped_neg,        !(new) calculated pedestals.
Line 148 
Line 159 
 *     CTPTYPE=parm *     CTPTYPE=parm
 * *
       integer*4 scer_min_peds       integer*4 scer_min_peds
         integer*4 scer_ped_limit(smax_cer_hits)
 * *
       common/sos_cer_pedestals/       common/sos_cer_pedestals/
      &   scer_ped_sum2,       !sum of squares      &   scer_ped_sum2,       !sum of squares
      &   scer_ped_sum,        !sum of peds      &   scer_ped_sum,        !sum of peds
      &   scer_ped_num,        !number of peds      &   scer_ped_num,        !number of peds
        &   scer_ped_limit,      !max. allowed ped (reject hits during ped trig)
      &   scer_min_peds,       !# of peds required to override default pedestals      &   scer_min_peds,       !# of peds required to override default pedestals
      &   scer_new_ped,      &   scer_new_ped,
      &   scer_new_rms,      &   scer_new_rms,
Line 189 
Line 202 
       real*4 saer_neg_threshold(smax_aer_hits)       real*4 saer_neg_threshold(smax_aer_hits)
       integer*4 saer_pos_adc_threshold(smax_aer_hits)       integer*4 saer_pos_adc_threshold(smax_aer_hits)
       integer*4 saer_neg_adc_threshold(smax_aer_hits)       integer*4 saer_neg_adc_threshold(smax_aer_hits)
         integer*4 saer_pos_ped_limit(smax_aer_hits)
         integer*4 saer_neg_ped_limit(smax_aer_hits)
 * *
       common/sos_aero_pedestals/       common/sos_aero_pedestals/
      &   saer_pos_ped_sum2,       !sum of squares      &   saer_pos_ped_sum2,       !sum of squares
Line 197 
Line 212 
      &   saer_neg_ped_sum,        !sum of peds      &   saer_neg_ped_sum,        !sum of peds
      &   saer_pos_ped_num,        !number of peds      &   saer_pos_ped_num,        !number of peds
      &   saer_neg_ped_num,        !number of peds      &   saer_neg_ped_num,        !number of peds
        &   saer_pos_ped_limit,      !max. allowed ped (reject hits during ped trig)
        &   saer_neg_ped_limit,      !max. allowed ped
      &   saer_min_peds,           !# of peds required to override default pedestals      &   saer_min_peds,           !# of peds required to override default pedestals
      &   saer_pos_ped_mean,       !calculated pedestal value      &   saer_pos_ped_mean,       !calculated pedestal value
      &   saer_neg_ped_mean,      &   saer_neg_ped_mean,
Line 233 
Line 250 
 *      real*4 sluc_neg_threshold(smax_luc_hits) *      real*4 sluc_neg_threshold(smax_luc_hits)
       integer*4 sluc_pos_adc_threshold(smax_luc_hits)       integer*4 sluc_pos_adc_threshold(smax_luc_hits)
       integer*4 sluc_neg_adc_threshold(smax_luc_hits)       integer*4 sluc_neg_adc_threshold(smax_luc_hits)
         integer*4 sluc_pos_ped_limit(smax_luc_hits)
         integer*4 sluc_neg_ped_limit(smax_luc_hits)
 * *
       common/sos_luci_pedestals/       common/sos_luci_pedestals/
      &   sluc_pos_ped_sum2,       !sum of squares      &   sluc_pos_ped_sum2,       !sum of squares
Line 241 
Line 260 
      &   sluc_neg_ped_sum,        !sum of peds      &   sluc_neg_ped_sum,        !sum of peds
      &   sluc_pos_ped_num,        !number of peds      &   sluc_pos_ped_num,        !number of peds
      &   sluc_neg_ped_num,        !number of peds      &   sluc_neg_ped_num,        !number of peds
        &   sluc_pos_ped_limit,      !max. allowed ped (reject hits during ped trig)
        &   sluc_neg_ped_limit,      !max. allowed ped
      &   sluc_min_peds,           !# of peds required to override default pedestals      &   sluc_min_peds,           !# of peds required to override default pedestals
      &   sluc_pos_ped_mean,       !calculated pedestal value      &   sluc_pos_ped_mean,       !calculated pedestal value
      &   sluc_neg_ped_mean,      &   sluc_neg_ped_mean,


Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

Analyzer/Replay: Mark Jones, Documents: Stephen Wood
Powered by
ViewCVS 0.9.2-cvsgraph-1.4.0