Back to home page

EIC code displayed by LXR

 
 

    


Warning, /EICrecon/docs/design/particle_matching.md is written in an unsupported language. File is not indexed.

0001 # Particle matching
0002 
0003 
0004 ```mermaid
0005 flowchart LR
0006   classDef alg fill:#f96;
0007 
0008   subgraph Tracking output
0009     direction TB
0010     TrackingOutput(CentralDetectorParticles)
0011   end
0012 
0013   subgraph Simulation output
0014     direction TB
0015     MCParticles(MCParticles)
0016   end
0017 
0018   subgraph Calorimetry output
0019     direction TB
0020 
0021     CalorimetryClusters(CalorimetryClusters:<br/>SubsystemClusters)
0022     CalorimetryAssociations(CalorimetryAssociations:<br/>SubsystemClusterAssociations)
0023   end
0024 
0025   MCParticles --> MC2SmearedParticle[MC2SmearedParticle]:::alg
0026   MC2SmearedParticle --> GeneratedParticles
0027 
0028   MCParticles --> ParticlesWithPID[ParticlesWithPID]:::alg
0029   TrackingOutput --> ParticlesWithPID
0030 
0031   ParticlesWithPID --> ReconstructedChargedParticles(ReconstructedChargedParticles)
0032   ParticlesWithPID --> ReconstructedChargedParticlesAssoc(ReconstructedChargedParticlesAssoc)
0033 
0034   MCParticles --> MatchClusters[MatchClusters]:::alg
0035   ReconstructedChargedParticles --> MatchClusters
0036   ReconstructedChargedParticlesAssoc --> MatchClusters
0037 
0038   CalorimetryAssociations --> MatchClusters
0039   CalorimetryClusters --> MatchClusters
0040 
0041   MatchClusters --> ReconstructedParticles(ReconstructedParticles)
0042   MatchClusters --> ReconstructedParticlesAssoc(ReconstructedParticlesAssoc)
0043 
0044   subgraph EDM4EIC PODIO output
0045     direction TB
0046 
0047     ReconstructedParticles
0048     ReconstructedParticlesAssoc
0049     GeneratedParticles
0050   end
0051 
0052 ```