Iguana 1.2.1
Implementation Guardian of Analysis Algorithms
Loading...
Searching...
No Matches
Config.yaml
1physics::InclusiveKinematics:
2
3 # the name of the particle bank, only used for users of `hipo::banklist`;
4 # e.g., set it to 'MC::Particle' if you prefer. This bank is used to
5 # find the scattered lepton
6 particle_bank: 'REC::Particle'
7
8 # beam and target configuration, set for each run range
9 # - `beam_particle`: beam particle, e.g., "electron"
10 # - `beam_energy`: beam energy [GeV]; if < 0, use the RCDB, otherwise use the specified value
11 # - `beam_direction`: beam direction vector; does not have to be normalized
12 # - `target_particle`: target particle, e.g., "proton"
13 # - `target_energy`: target energy [GeV]; if < 0, assume fixed target, otherwise treat the target as a beam with this energy
14 # - `target_direction`: target direction vector; unused if `target_energy < 0`, i.e., fixed target; does not have to be normalized
15 initial_state:
16 - default: # default run range
17 beam_particle: electron
18 beam_energy: -1.0
19 beam_direction: [ 0.0, 0.0, 1.0 ]
20 target_particle: proton
21 target_energy: -1.0
22 target_direction: [ 0.0, 0.0, 0.0 ]
23
24 # kinematics reconstruction method
25 method:
26 # reconstruction method:
27 # - 'scattered_lepton': use the scattered lepton to calculate kinematics
28 # - no other method is available yet
29 reconstruction: scattered_lepton
30 # lepton finder method, used if reconstruction method == 'scattered_lepton':
31 # - 'highest_energy_FD_trigger': use the highest energy FD trigger electron
32 # - 'lund_beam_daughter': use 'MC::Lund' parent info; be sure to set
33 # `particle_bank` to 'MC::Lund' if you are using `hipo::banklist`, or
34 # use the 'MC::Lund' bank directly in the `Run(hipo::bank&, ...)` function
35 lepton_finder: highest_energy_FD_trigger
36
37 # this is the theta used to roughly select between FD and FT; it is only
38 # used for the case where `particle_bank` lacks the `status` variable,
39 # such as `MC::Particle`
40 theta_between_FD_and_FT: 5.0 # [deg]