Skip to content

Commit 8ea590b

Browse files
authored
Update 02-eicrecon.md
1 parent 960af09 commit 8ea590b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

_episodes/02-eicrecon.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,21 @@ By default, we use the Combinatorial Kalman Filter from the ACTS library to hand
104104
{: .challenge}
105105

106106
### __Reconstruction output__
107-
- `events` tree:
107+
- __events__ tree:
108108
- `MCParticles` and detector sim hits are copied from simulation output to recon output
109109
- outputs from each step of recon algorithms must be either `edm4hep` or `edm4eic` object if you want to save them in recon output
110110
- the default list of saved objects in recon output is defined in `EICrecon/src/services/io/podio/JEventProcessorPODIO.cc`. It can be configured in command line.
111-
- `podio_metadata` tree:
111+
- __podio_metadata__ tree:
112112
- `events___idTable` provides a lookup table between output collection name and IDs.
113113

114114

115115
> Exercise 2.3:
116116
> The __vector member__ or __relation__ of a given data collection is saved in a separate branch starts with "_".
117-
> - Please use ```tree.keys(filter_name="_CentralCKFTrajectories*",recursive=False)``` to list those members in `CentralCKFTrajectories`
117+
> - Please use
118+
> ```console
119+
tree.keys(filter_name="_CentralCKFTrajectories*",recursive=False)
120+
```
121+
to list those members in `CentralCKFTrajectories`
118122
> - for a given event, the vector member `_CentralCKFTrajectories_measurementChi2` provides a list of chi2 for each meaurement hit respectively. If multiple trajectories are found for one event, you can use `CentralCKFTrajectories.measurementChi2_begin` to locate the start index of a given trajectory (subentry).
119123
{: .challenge}
120124

0 commit comments

Comments
 (0)