Skip to content
Snippets Groups Projects
Commit 6928a2fa authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: ReconstructedChargedParticlesAssociations -> ReconstructedChargedParticleAssociations

parent a96f4670
No related branches found
No related tags found
1 merge request!206fix: ReconstructedChargedParticlesAssociations -> ReconstructedChargedParticleAssociations
...@@ -30,8 +30,8 @@ for array in ur.iterate(rec_file + ':events',['MCParticles/MCParticles.generator ...@@ -30,8 +30,8 @@ for array in ur.iterate(rec_file + ':events',['MCParticles/MCParticles.generator
'ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.x', 'ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.x',
'ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.y', 'ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.y',
'ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.z', 'ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.z',
'ReconstructedChargedParticlesAssociations/ReconstructedChargedParticlesAssociations.simID', 'ReconstructedChargedParticleAssociations/ReconstructedChargedParticleAssociations.simID',
'ReconstructedChargedParticlesAssociations/ReconstructedChargedParticlesAssociations.recID'],step_size=Nevents): 'ReconstructedChargedParticleAssociations/ReconstructedChargedParticleAssociations.recID'],step_size=Nevents):
PDG_mc = array['MCParticles/MCParticles.PDG'] #Monte Carlo (MC) particle numbering scheme. PDG_mc = array['MCParticles/MCParticles.PDG'] #Monte Carlo (MC) particle numbering scheme.
px_mc = array['MCParticles/MCParticles.momentum.x'] px_mc = array['MCParticles/MCParticles.momentum.x']
py_mc = array['MCParticles/MCParticles.momentum.y'] py_mc = array['MCParticles/MCParticles.momentum.y']
...@@ -40,8 +40,8 @@ for array in ur.iterate(rec_file + ':events',['MCParticles/MCParticles.generator ...@@ -40,8 +40,8 @@ for array in ur.iterate(rec_file + ':events',['MCParticles/MCParticles.generator
px_rc = array['ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.x'] px_rc = array['ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.x']
py_rc = array['ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.y'] py_rc = array['ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.y']
pz_rc = array['ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.z'] pz_rc = array['ReconstructedChargedParticles/ReconstructedChargedParticles.momentum.z']
simID = array['ReconstructedChargedParticlesAssociations/ReconstructedChargedParticlesAssociations.simID'] simID = array['ReconstructedChargedParticleAssociations/ReconstructedChargedParticleAssociations.simID']
recID = array['ReconstructedChargedParticlesAssociations/ReconstructedChargedParticlesAssociations.recID'] recID = array['ReconstructedChargedParticleAssociations/ReconstructedChargedParticleAssociations.recID']
#SimID and recID contain the indices of the MCParticles and ReconstructedParticles entry for that event. #SimID and recID contain the indices of the MCParticles and ReconstructedParticles entry for that event.
### MCParticles Variables ### MCParticles Variables
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment