pipeline Module
Definition of a kinematics pipeline for sampling a reaction (chain) phase space.
KinematicsPipeline
The pipeline for generating kinematics data
The pipeline handles the random sampling using a numpy Generator
Parameters:
Name | Type | Description | Default |
---|---|---|---|
steps
|
list[Reaction | Decay]
|
The steps to be added into the pipeline. The first step should always be a Reaction. All subsequent steps should be Decays. |
required |
excitations
|
list[ExcitationDistribution]
|
The excited state to populate in the Reaction residual or Decay residual_2. The number of excitations should be the same as the number of steps, and the order of the excitations and steps should be the same. |
required |
polar_dists
|
list[PolarDistribution]
|
The angular distributions to sample from. Currently we only support uniform distributions in cos(polar), however, it is possible that in the future we may support more complex distributions! |
required |
beam_energy
|
float
|
The initial (accelerator) beam energy in MeV |
required |
target_material
|
KinematicsTargetMaterial | None
|
Optional target material. If present energy loss will be applied to the beam. |
None
|
event_sample_limit
|
int
|
The upper limit on the number of resamples per event. Resamples occur most commonly when an excitation is defined that dips below the energy threshold, making a section of the distribution invalid. The upper limit defined here stops us from sampling forever in the case where mutually exclusive steps in energy were defined. In general, the default value should suffice, but for extremely narrow phase spaces this may need to be expanded. But generally it would be better to define a clipped excitation distribution to draw from. |
1000
|
Attributes:
Name | Type | Description |
---|---|---|
reaction |
Reaction
|
The reaction in the pipeline. Always the first step in the pipeline |
decays |
list[Decay]
|
The subsequent decay steps in the pipeline. |
beam_energy |
float
|
The initial (accelerator) beam energy used for the reaction step |
target_material |
KinematicsTargetMaterial | None
|
Optional target material. If present energy loss will be applied to the beam. |
Source code in src/attpc_engine/kinematics/pipeline.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
|
__str__()
Return the full reaction chain as a string
Returns:
Type | Description |
---|---|
str
|
The chain as a reaction equation |
Source code in src/attpc_engine/kinematics/pipeline.py
check_excitations_allowed(projectile_energy, excitations)
Check if the total reaction system has enough energy to occur
Parameters:
Name | Type | Description | Default |
---|---|---|---|
projectile_energy
|
float
|
The beam energy in MeV |
required |
excitations
|
list[float]
|
The excitations for each step in MeV |
required |
Returns:
Type | Description |
---|---|
bool
|
True if allowed, False otherwise |
Source code in src/attpc_engine/kinematics/pipeline.py
get_mass_numbers()
Get the array of mass numbers
Returns:
Type | Description |
---|---|
ndarray
|
An N dimensional array of mass numbers (integers) |
Source code in src/attpc_engine/kinematics/pipeline.py
get_proton_numbers()
Get the array of proton numbers
Returns:
Type | Description |
---|---|
ndarray
|
An N dimensional array of proton numbers (integers) |
Source code in src/attpc_engine/kinematics/pipeline.py
run()
The method simulate an event
This method will re-sample from the given distributions until a valid event is created OR the single-event-sample-limit is reached. This achieves two goals:
- The number of events sampled is guaranteed to match the requested amount
- The shape of the sampled distributions is correct even in the case where one of the excitations has a region that is kinematically not allowed
However, it does mean that without an upper limit we could sample forever in the case where an excitation is defined with a distribution that is never energetically allowed. Thus, we have a single-event-sample-limit that stops the calculation if the we sample too many times.
Returns:
Type | Description |
---|---|
ndarray
|
The reaction vertex as a 3-vector. The array is [x,y,z], with each element in meters. |
ndarray
|
An Nx4 array of the nuclei 4-vectors. Each unique nucleus is a row in the array, and each row contains the px, py, pz, E. |
Source code in src/attpc_engine/kinematics/pipeline.py
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 |
|
sample()
Sample the pipeline parameters
Returns:
Type | Description |
---|---|
Sample
|
The sampled set of pipeline parameters |
Source code in src/attpc_engine/kinematics/pipeline.py
KinematicsTargetMaterial
dataclass
Wrapper around GasTarget and sampling parameters
Attributes:
Name | Type | Description |
---|---|---|
material |
GasTarget
|
The target material |
z_range |
tuple[float, float]
|
The range of reaction verticies in the material. First value is the minimum, second value is the maximum, both in units of meters. The z_range is also used to sample beam energies within the target volume. |
rho_sigma |
float
|
The standard deviation of a normal distribution centered at 0.0 used to sample the reaction vertex ρ in cylindrical coordinates. The distribution in cylindrical θ is assumed to be uniform. In units of meters. |
Source code in src/attpc_engine/kinematics/pipeline.py
PipelineError
Sample
dataclass
Complete set of sampled data for a pipeline
Attributes:
Name | Type | Description |
---|---|---|
beam_energy |
float
|
Beam (projectile) energy in MeV |
reaction_excitation |
float
|
Exctation energy for reaction residual in MeV |
reaction_theta |
float
|
The reaction polar angle in radians |
reaction_phi |
float
|
The reaction azimuthal angle in radians |
vertex |
ndarray
|
The reaction vertex position in meters [x,y,z] |
decay_excitations |
list[float]
|
List of excitation energy for each decay residual in MeV |
decay_thetas |
list[float]
|
List of polar angle for each decay residual in radians |
decay_phis |
list[float]
|
List of azimuthal angle for each decay residual in radians |
Source code in src/attpc_engine/kinematics/pipeline.py
run_kinematics_pipeline(pipeline, n_events, output_path)
Run a pipeline for n events and write the result to disk
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pipeline
|
KinematicsPipeline
|
The pipeline to be run |
required |
n_events
|
int
|
The number of events to sample |
required |
output_path
|
Path
|
The path to which the data should be written (HDF5 format) |
required |