Tower energy response accounts for pre/post shower brightness
in the slow simulator (Ver 2.0)

01/08/2007
J. Webb, P. Nord, J. Balewski

Abstract: The version 1.0 of the slow simulator performs a simple energy-deposit to adc conversion for the EEMC towers assuming ideal gains and a sampling fraction of 5%. While the geant simulation gets the geometry of the 24 layers of the endcap correct, it does not simulate the (measured) differences in brightness and double readout of the 3 special layers (pre1/pre2/post) and the other tiles.
Version 2.0 allows to change fraction of the light collected by the pre/post shower added to the reconstructed tower energy.

  • PDF file which shows the bench test measured light yields (mean number of PE per MIP) for the 3 special and 21 normal layers of the endcap.
  • Spreadsheet showing the relative light yields for each of the special layers.
  • According to the spreadsheet, the two preshower layers provide a factor of 1.68 more light (per MIP) into the tower PMT's than all other layers. The postshower layer is actually dimmer, providing only 94% of the light of the normal layers.

    The current simulator uses the following formula to compute the ADC response of each tower:

    ADC = ∑ E i / 0.05 * gain

    where the sum is over all layers, 0.05 is the sampling fraction and gain is the ideal gain for the tower. The simplest correction for the relative brightness of the pre/postshower layers is to weight the energy of the special layers by the relative brightness:

    ADC = ∑ E i F(i) / 0.05 * gain

    where the values of F(1), F(2), and F(3) are params and can be change by the set method. Defaults are set to match the bench test results. Values of F(i) = 1 for i=3..23 can't be changed.

    Details of the implementation:

    Slow simulator ver 2.0 takes as input the energy deposited in the tower scintillator tiles "E" (in StEvent, in MuDst just the ADC calculated by the fast simulator) and the energy deposited in the preshower and postshower scintillator layers ("E_xxx"). The fast simulator gives us 4 values:

    E = E_pre1 + E_pre2 + E_layer3 + ... + E_layer23 + E_post,
    E_pre1, E_pre2, and E_post.

    We compute a "light yield weighted energy deposit" E', given by

    E' = f * E_pre1 + g * E_pre2 + E_layer3 + ... + E_layer23 + h * E_post
    with 3 weight factors f, g, h set based on the bench test mentioned earlier.

    which can alternatively be written in terms of quantities we have access to from the fast simulator:

    E' = E + (f-1)*E_pre1 + (g-1)*E_pre2 + (h-1)*E_post
    The above correction is applied before photon statistcs is folded in to pre/post shower response.

    When processing events in the MuDst, we do not have access to the tower geant energy deposits for some historical reasons. This results in some roundoff errors in the MuDst which are not present in StEvent. The size of this effect is small, as shown below.

    User interface:

    1. Slow Simu ver 2.0 is the default, in CVS, since January 2007
    2. The default pre/post light weight factors are:
      o pres1: f=1.34 =1.68 * (4/5)
      o pres2: g=1.34 = 1.68 * (4/5)
      o post: h=0.75 =0.94 * (4/5)

      The extra factor of (4/5) is needed to factor out the increase in light yield due to the thicker material used in pre1,pre2 and post. GEANT already takes this into account when it simulate energy deposited. The relative light yield correction in the slow simulator is only supposed to correct for the increased brightness of the scintillator.

    3. Example of the .C macro making use of Slow Simu ver2 is at: $STAR/StRoot/StEEmcSimulatorMaker/macros/runEEmcSlowMaker.C

      To change pre/post light weight to other values use method:

      StEEmcSlowMaker *slowSim=....
        slowSim-> setRelativeLightYield(f,g,h);
      

    Some simple tests using the following Monte Carlo data sample.

    1. Single gammas generated with nominal vertex, no SVT, essentially flat pT distribution [4,12].
    2. Plot tower ADC for all "hit" tower (3 sigma above ped), after slow simulator vs before
    3. Process 2800 events, compare MuDst and StEvent

    Figure 1 -- Event by event comparison of tower ADC after slow simulator ver 2 vs. ver 1

    Figure 2 -- Difference plot: difference between output and input tower ADC vs sum of pre1+pre2 ADC.

    Figure 3 -- Percent increase in energy vs. original (fast simulator) energy.

    Observations

    1. Total number of events: 2800
    2. In MuDst: 7378 hit towers. In StEvent: 7388 hit towers. A 0.1% difference.
    3. In MuDst: 2010 towers change ADC by > 1 channel. In StEvent: 2027 towers change ADC by > 1 channel. A 0.8% difference.
    4. Corrections to tower energy given preshower signals can be quite significant below 2 GeV.
    5. Above 2 GeV, we see a +1-2% correction on average.