Changeset 2c81caa in git
- Timestamp:
- Dec 9, 2019, 3:19:06 PM (5 years ago)
- Branches:
- Timing
- Children:
- 2b5ff2c
- Parents:
- 4265189
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/FCC/FCChh_PileUpVtx.tcl
r4265189 r2c81caa 14 14 set ExecutionPath { 15 15 16 RHadronFilter17 RHadronMerger18 16 ParticlePropagator 19 17 … … 70 68 } 71 69 72 #################################73 # Get stable R-Hadrons74 #################################75 76 module PdgCodeFilter RHadronFilter {77 set InputArray Delphes/allParticles78 set OutputArray stableRHadrons79 set Invert false80 81 set RequireStatus true82 set Status 10483 }84 85 #################################86 # Merge R-Hadrons with other sable87 #################################88 89 module Merger RHadronMerger {90 add InputArray RHadronFilter/stableRHadrons91 add InputArray Delphes/stableParticles92 set OutputArray stableParticles93 }94 95 70 96 71 ################################# … … 99 74 100 75 module ParticlePropagator ParticlePropagator { 101 #set InputArray Delphes/stableParticles 102 set InputArray RHadronMerger/stableParticles 76 set InputArray Delphes/stableParticles 103 77 set OutputArray stableParticles 104 78 set ChargedHadronOutputArray chargedHadrons -
readers/DelphesPythia8.cpp
r4265189 r2c81caa 151 151 152 152 candidate->Position.SetXYZT(x, y, z, t); 153 154 153 allParticleOutputArray->Add(candidate); 155 154 156 if(!pdgParticle) continue; 155 if(!pdgParticle && (abs(pid) > 1006333 || abs(pid) < 1000612) ) 156 continue; 157 157 158 158 if(status == 1)
Note:
See TracChangeset
for help on using the changeset viewer.