Skip to content

Commit a9d4085

Browse files
committed
Merge branch 'feature/other-cosmetics-updates' into 'main'
Other cosmetics updates See merge request belle2/software/display!5
2 parents 40cf1d4 + 87327f7 commit a9d4085

File tree

5 files changed

+17
-29
lines changed

5 files changed

+17
-29
lines changed

README.md

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,18 @@
11
# Belle II Event Display with Phoenix - GSoC 2023
22

33
This Angular CLI web app displays Belle II events using Phoenix, a TypeScript-based event display framework.
4-
<br>
5-
The web app has been deployed and can be accessed through [display.belle2.org](https://display.belle2.org)
6-
7-
In order to run the application on your local machine, please perform the following steps.
8-
<br>
9-
## Prerequisites
104

11-
1. Install Node.js and NPM on your system. You can download the latest version of Node.js from the [official website](https://nodejs.org/en/download/).
12-
2. Install Angular CLI globally by running the command `npm install -g @angular/[email protected]`. This command will install the latest version of Angular CLI on your system.
5+
The web app can be accessed through [display.belle2.org](https://display.belle2.org).
136

14-
## How to Run
15-
16-
1. Clone this repository to your local machine
17-
```git clone [email protected]:belle2/display.git```
18-
2. Change the current directory into the cloned folder
19-
```cd display```
20-
3. Run `npm install` to install the necessary dependencies
21-
4. Run `npm start` or `ng serve` to start the development server
22-
5. Navigate to `http://localhost:4200/` in your web browser to view the app
7+
In order to run the application on your local machine, please refer to the the [documentation](https://display.belle2.org/documentation/developer/installation.html).
238

249
## About the App
2510
![image](https://github.com/HieuLCM/GSoC2023_Belle2/assets/88785267/dc08313f-03a9-4832-9713-123b554b0a10)
2611

27-
The web application serves as a tool that allows scientists and physicists to import events from mdst `.root` files, which contain data, and then view them directly in a web browser. By leveraging the Phoenix framework and adding custom features, the application provides a user-friendly environment for event display, complete with intuitive user interface controls.
28-
12+
The web application serves as a tool that allows physicists and non-physicists to import Belle II events from `.root` files, containing either collisions or simulated data, and view them directly in a web browser. By leveraging the Phoenix framework and adding custom features, the application provides a user-friendly environment for event display, complete with intuitive user interface controls.
13+
<br>
2914
For more detailed instructions on how to use and develop the app, please refer to the [documentation](https://display.belle2.org/documentation).
3015

31-
*The documentation is created using Sphinx and its source file is located in the `docs/` folder.*
16+
The documentation is created using Sphinx and its source file is located in the [`docs/` folder](https://github.com/belle2/display/tree/main/docs).
3217

33-
### Le Cong Minh Hieu - GSoC 2023
18+
### Le Cong Minh Hieu, The Belle II Collaboration - Developed as part of the [Google Summer of Code 2023](https://hepsoftwarefoundation.org/gsoc/blogs/2023/blog_Belle2_HieuLeCongMinh.html)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
project = 'Belle II Event Display with Phoenix'
1414
copyright = '2023, Hieu Le Cong Minh'
1515
author = 'Hieu Le Cong Minh'
16-
release = '0.1'
16+
release = 'v0.0.0'
1717

1818
# -- General configuration ---------------------------------------------------
1919
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

src/app/detector/detector.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
</app-ui-menu-wrapper>
2121
<app-phoenix-menu [rootNode]="phoenixMenuRoot"></app-phoenix-menu>
2222
<div class="info">
23-
<h5><b>Le Cong Minh Hieu</b></h5>
24-
<p>Belle II Detector</p>
23+
<h5><b>Le Cong Minh Hieu, The Belle II Collaboration</b></h5>
24+
<p>Belle II Detector, v0.0.0</p>
2525
<p>GSoC 2023</p>
2626
</div>
2727
<a id="mainLogo" class="main-logo fixed-top p-2 mx-auto mt-2" routerLink="/">

src/app/event-display/event-display.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<app-embed-menu></app-embed-menu>
2222
<app-phoenix-menu [rootNode]="phoenixMenuRoot"></app-phoenix-menu>
2323
<div class="info">
24-
<h5><b>Le Cong Minh Hieu</b></h5>
25-
<p>Belle II Event Display with Phoenix</p>
24+
<h5><b>Le Cong Minh Hieu, The Belle II Collaboration</b></h5>
25+
<p>Belle II Event Display, v0.0.0</p>
2626
<p>GSoC 2023</p>
2727
</div>
2828
<a id="mainLogo" class="main-logo fixed-top p-2 mx-auto mt-2" routerLink="/">

src/app/home/home.component.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="container">
22
<div class="pricing-header p-3 pt-md-5 pb-md-4 text-center">
33
<img src="assets/images/logo.png" class="logo mb-4" alt="" />
4-
<p class="lead">Welcome to the Belle II Event Display with Phoenix</p>
4+
<p class="lead">Welcome to the Belle II Event Display with Phoenix - v0.0.0</p>
55
</div>
66

77
<div class="row centered">
@@ -40,9 +40,12 @@ <h5 class="card-title">Detector</h5>
4040
</div>
4141

4242
<footer>
43-
<p>Google Summer of Code 2023</p>
43+
<p>Le Cong Minh Hieu, The Belle II Collaboration</p>
4444
<p>
45-
<a href="https://github.com/belle2/display"> GitHub </a> -
45+
Developed as part of the <a href="https://hepsoftwarefoundation.org/gsoc/blogs/2023/blog_Belle2_HieuLeCongMinh.html"> Google Summer of Code 2023 </a>
46+
</p>
47+
<p>
48+
<a href="https://github.com/belle2/display/"> GitHub </a> -
4649
<a href="https://display.belle2.org/documentation/">
4750
Documentation
4851
</a>

0 commit comments

Comments
 (0)