Fork me on GitHub

Changeset ff37d75 in git for cards


Ignore:
Timestamp:
Jun 30, 2015, 10:43:21 AM (9 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
6153fb0
Parents:
c1ce3fe
Message:

added photon conversions to LHCb card

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/delphes_card_LHCb.tcl

    rc1ce3fe rff37d75  
    88
    99set ExecutionPath {
    10 
     10 
     11  PhotonConversions
    1112  ParticlePropagator
    1213
     
    2829
    2930
     31#####################
     32# Photon Conversions
     33#####################
     34
     35module PhotonConversions PhotonConversions {
     36  set InputArray Delphes/stableParticles
     37
     38  set OutputArray stableParticles
     39 
     40  # radius of the magnetic field coverage, in m
     41 
     42  set Radius 3.31
     43   
     44  set HalfLength 12.0
     45 
     46  set EtaMin 2.0
     47  set EtaMax 5.0
     48 
     49 
     50  # material budget map: (uniform for now)
     51  # distribution of the detector mass ( density / X0), can be thought as
     52  # conversion rate per meter function of r,phi,z
     53 
     54 
     55  # unit: m-1
     56 
     57  set Step 0.05
     58 
     59  set ConversionMap {          (abs(z) > 0.0 && abs(z) < 12.0 ) * (0.07) +
     60                               (abs(z) > 0.0) * (0.00) +
     61                               (abs(z) < 0.0) * (0.00)
     62                    }
     63
     64}
     65
     66
     67
    3068#################################
    3169# Propagate particles in cylinder
     
    3371
    3472module ParticlePropagator ParticlePropagator {
    35   set InputArray Delphes/stableParticles
     73  set InputArray PhotonConversions/stableParticles
    3674
    3775  set OutputArray stableParticles
     
    199237                                           (eta > 2.0  && eta <= 5.0) *     (pt >= 0.8)* (0.97) +
    200238                                           (eta > 5.0)                                 * (0.00)}
     239
     240# --- electrons ---
     241
     242
     243
     244  add EfficiencyFormula {-11} {-11} {      (eta <= 2.0)                                * (0.00) +
     245                                           (eta > 2.0  && eta <= 5.0) *      (pt < 0.6)* (0.97) +
     246                                           (eta > 2.0  && eta <= 5.0) *     (pt >= 0.6)* (0.97) +
     247                                           (eta > 5.0)                                 * (0.00)}
     248
    201249
    202250
Note: See TracChangeset for help on using the changeset viewer.