-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
1,848 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Research Project on Amplitude Models Involving N-Star and K-Star Resonances in the GlueX Experiment | ||
|
||
This repository is under active development. | ||
|
||
We are doing amplitude analysis / Partial Wave Analysis (PWA) with the use of symbolic expressions, which is included in the ComPWA packages, or CAS(Computer Algebra System)-assisted model building in general (the python package SymPy in this case). | ||
|
||
The first demonstration example is: $p \gamma \to$ Resonances (e.g. N\*) $\to \eta \pi^0 p$ | ||
|
||
The main focus of this research would be: $p \gamma \to$ Resonances (e.g. N\*, K\*) $\to K^+ \pi^0 \Lambda$ | ||
|
||
Current long term plan: This research project focuses on developing and applying amplitude models to analyze data from the GlueX experiment, specifically targeting N-star (N*) and K-star (K*) resonances. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,19 @@ | ||
project = "GlueX-Nstar" | ||
author = "ComPWA" | ||
|
||
exclude_patterns = [ | ||
"**.ipynb_checkpoints", | ||
".DS_Store", | ||
".pixi", | ||
"Thumbs.db", | ||
"_build", | ||
] | ||
extensions = [ | ||
"myst_nb", | ||
"sphinx.ext.duration", | ||
"sphinx.ext.doctest", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.autosummary", | ||
"sphinx.ext.intersphinx", | ||
"sphinx.ext.napoleon", | ||
"sphinx.ext.viewcode", | ||
] | ||
extensions = ["myst_nb"] | ||
html_theme = "sphinx_book_theme" | ||
master_doc = "index" | ||
myst_enable_extensions = [ | ||
"amsmath", | ||
"colon_fence", | ||
"deflist", | ||
"dollarmath", | ||
"html_admonition", | ||
"html_image", | ||
"linkify", | ||
"substitution", | ||
"tasklist", | ||
"smartquotes", | ||
] | ||
|
||
nb_execution_mode = "auto" | ||
nitpicky = True | ||
version = "0.1.0" | ||
project = "GlueX N-Star" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
# Welcome Page | ||
# Amplitude Analysis 101 / PWA101 (v2.0) | ||
|
||
# Welcome to GlueX-Nstar documentation! | ||
## CAS-assisted Amplitude Models building for photoproduction reaction | ||
|
||
Investigation of the N\* Resonances in the GlueX Experiment | ||
This document is a follow-up of PWA101 (v1.0) (temporarily see [here](https://compwa--217.org.readthedocs.build/report/999.html)), | ||
as an introduction to Amplitude Analysis / Partial Wave Analysis (PWA) by demonstrating its application to a specific reaction channel and amplitude model. | ||
|
||
> **Note:** This project is under active development. | ||
Now the focus is the use of symbolic expressions (computations), with the use of [ComPWA packages](https://compwa.github.io/), or CAS(Computer Algebra System)-assisted model building in general (the python package `SymPy` in this case) to illustrate the general process in PWA. | ||
|
||
## Contents | ||
This tutorial aims to equip readers with deeper understanding of PWA methodologies and full workflow in the context of hadron physics through a practical, hands-on example with symbolic expressions via [ComPWA](https://compwa.github.io/). | ||
|
||
Furthermore, | ||
address to the issue ✅ [ComPWA/gluex-nstar#1](https://github.com/ComPWA/gluex-nstar/issues/1), this document is PWA101(v2.0), which shows PWA methodologies and full workflow in the context of hadron physics with symbolic expressions via [ComPWA](https://compwa.github.io/). | ||
|
||
# Table of contents: | ||
|
||
```{toctree} | ||
hello | ||
reaction | ||
pgamma-state | ||
``` |
Oops, something went wrong.