Fork me on GitHub

Changeset 4265189 in git for cards/FCC/FCChh_PileUpVtx.tcl


Ignore:
Timestamp:
Dec 5, 2019, 4:35:33 PM (5 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
Timing
Children:
2c81caa
Parents:
1363bf5
Message:

added RHadron filter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/FCC/FCChh_PileUpVtx.tcl

    r1363bf5 r4265189  
    1414set ExecutionPath {
    1515
     16  RHadronFilter
     17  RHadronMerger
    1618  ParticlePropagator
    1719
     
    6870}
    6971
    70 #####################################
    71 # Track propagation to calorimeters
    72 #####################################
     72#################################
     73# Get stable R-Hadrons
     74#################################
     75
     76module PdgCodeFilter RHadronFilter {
     77  set InputArray Delphes/allParticles
     78  set OutputArray stableRHadrons
     79  set Invert false
     80
     81  set RequireStatus true
     82  set Status 104
     83}
     84
     85#################################
     86# Merge R-Hadrons with other sable
     87#################################
     88
     89module Merger RHadronMerger {
     90  add InputArray RHadronFilter/stableRHadrons
     91  add InputArray Delphes/stableParticles
     92  set OutputArray stableParticles
     93}
     94
     95
     96#################################
     97# Propagate particles in cylinder
     98#################################
    7399
    74100module ParticlePropagator ParticlePropagator {
    75   set InputArray Delphes/stableParticles
     101  #set InputArray Delphes/stableParticles
     102  set InputArray RHadronMerger/stableParticles
    76103  set OutputArray stableParticles
    77104  set ChargedHadronOutputArray chargedHadrons
Note: See TracChangeset for help on using the changeset viewer.