File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -38,19 +38,21 @@ JetReconstruction.energy(recoparticle::ReconstructedParticle) = recoparticle.ene
3838
3939Construct an EEJet from a ReconstructedParticle.
4040"""
41- function JetReconstruction. EEJet(recoparticle:: ReconstructedParticle )
41+ function JetReconstruction. EEJet(recoparticle:: ReconstructedParticle ; cluster_hist_index :: Int = 0 )
4242 EEJet(JetReconstruction. px(recoparticle), JetReconstruction. py(recoparticle),
43- JetReconstruction. pz(recoparticle), JetReconstruction. energy(recoparticle))
43+ JetReconstruction. pz(recoparticle), JetReconstruction. energy(recoparticle);
44+ cluster_hist_index)
4445end
4546
4647"""
4748 JetReconstruction.PseudoJet(recoparticle::ReconstructedParticle)
4849
4950Construct an PseudoJet from a ReconstructedParticle.
5051"""
51- function JetReconstruction. PseudoJet(recoparticle:: ReconstructedParticle )
52+ function JetReconstruction. PseudoJet(recoparticle:: ReconstructedParticle ; cluster_hist_index :: Int = 0 )
5253 PseudoJet(JetReconstruction. px(recoparticle), JetReconstruction. py(recoparticle),
53- JetReconstruction. pz(recoparticle), JetReconstruction. energy(recoparticle))
54+ JetReconstruction. pz(recoparticle), JetReconstruction. energy(recoparticle);
55+ cluster_hist_index)
5456end
5557
5658end
You can’t perform that action at this time.
0 commit comments