simulator Module
Core logic of the detector simulation
dict_to_points(points)
Convert a point dictionary to a pointcloud array
Converts dictionary of N pad,tb keys with corresponding number of electrons to Nx3 array where each row is [pad, tb, e], now combined over pad/tb combos. Also returns a length N array which contains labels (particle index) for each point.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
points
|
NumbaTypedDict[int, tuple[int, int]]
|
A dictionary mapping a unique pad,tb key to the number of electrons and a label |
required |
Returns:
Type | Description |
---|---|
tuple[ndarray, ndarray]
|
Array of points and labels (in that order) |
Source code in src/attpc_engine/detector/simulator.py
run_simulation(config, input_path, writer, indices=None)
Run the detector simulation
Runs the AT-TPC detector simulation with the input parameters on the specified kinematic data hdf5 file generated by the kinematic simulation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
Config
|
The simulation configuration |
required |
input_path
|
Path
|
Path to HDF5 file containing kinematics |
required |
writer
|
SimulationWriter
|
An object which implements the SimulationWriter Protocol |
required |
indices
|
list[int] | None
|
List of which nuclei to include in the detector simulation. Nuclei are specified by index of which they occur in the kinematic arrays. For example, in a simple one step reaction, a(b,c)d 0=a, 1=b, 2=c, 3=d. For two step a(b,c)d->e+f e=4, f=5, and so on. If the list is None, all final reaction products are simulated. |
None
|
Source code in src/attpc_engine/detector/simulator.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
|
simulate(momenta, vertex, proton_numbers, mass_numbers, config, rng, indices)
Apply detector simulation to a kinematics event
Takes in the data from a sample from the kinematics phase space and applies detector effects to that sample, generating a pointcloud with labels.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
momenta
|
ndarray
|
The 4-momenta of the nuclei in the reaction |
required |
vertex
|
ndarray
|
The reaction vertex |
required |
proton_numbers
|
ndarray
|
The proton number for each nucleus in the reaction |
required |
mass_numbers
|
ndarray
|
The mass number for each nucleus in the reaction |
required |
config
|
Config
|
The detector simulation parameters |
required |
rng
|
Generator
|
A random number generator |
required |
indices
|
list[int]
|
The indicies in the list of nuclei which should be simulated. Typically this would be all final products of the reaction |
required |
Returns:
Type | Description |
---|---|
tuple[ndarray, ndarray]
|
Returns two arrays. The first is a point cloud of Nx3 shape, where N is the number of points and each point contains a pad ID, time bucket, and electrons deposited. The second is an array of length N, where each entry is the index of the nucleus which generated the point. |