-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
129 lines (102 loc) · 5.78 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOPAS - Home</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your external CSS file -->
<link rel="icon" href="Images/Index/LogoWhite.png" type="image/x-icon">
<style>
header {
background-image: url("./Images/Index/titlebackground.png");
background-size: cover;
background-position: center;
}
<--! body {
font-family: Verdana, sans-serif;
margin: 0;
} -->
</style>
</head>
<script src="navigation.js"></script>
<header>
<h1>TOPAS</h1>
<h5>A Monte Carlo Simulation Tool for Physics, Biology and Clinical Research </h5>
<br>
<h3>Welcome to the TOPAS Collaboration official site!</h3>
</header>
<body>
<div class="maintext">
<h3> The next TOPAS user meeting will be at FRPT </h3>
<p>
Are you attending the FRPT meeting? Then come join us for the next TOPAS user meeting. Details to follow.
<h3>What is OpenTOPAS ?</h3>
<p>
The NIH-funded TOPAS project made radiation therapy simulations using the Monte Carlo method easily accessible
for the radiotherapy community. The code has been released previously as open source. This repository brings TOPAS to a new,
open release stage, called OpenTOPAS. <br><br>
OpenTOPAS wraps and extends the <a href="https://geant4.web.cern.ch" target="_blank"> Geant4 Simulation Toolkit </a>
to provide an easier-to-use application for the medical physicist.
OpenTOPAS’s unique parameter control system lets you assemble and control a rich library of simulation objects (geometry components,
particle sources, scorers, etc.) with no need to write C++ code and without knowledge of the underlying Geant4 Simulation Toolkit.
Please visit our <a href="https://ucsf.box.com/s/5g6n6uvi8goljpsku3z4gi6on959w4n3" target="_blank">User guide</a> for mode details.
<br> <br>
OpenTOPAS basic concepts were originally created out of an NIH-funded collaboration of Massachusetts General Hospital, University
of California San Francisco, and SLAC National Accelerator Laboratory for the development of the TOPAS software. The current collaboration
between University of California San Francisco and Massachusetts General Hospital continues to support and develop TOPAS under the name of
OpenTOPAS since 2024.
<br> <br>
OpenTOPAS is designed for simulation of medical applications of ionizing radiation with the Monte Carlo method. The free availability of OpenTOPAS
is intended to aid and stimulate research by medical physicists, radiobiologists, and clinicians with emphasis on all modalities of radiotherapy.
We recommend new users look at the key publications to explore its potential.
<br> <br>
OpenTOPAS is fully open-access. Advanced users remain free to implement their own simulation objects in C++ code, and add them to
OpenTOPAS via fork mechanism. While user-written extensions benefit from underlying functionality of OpenTOPAS base classes and
the OpenTOPAS parameter system, they can exploit the full flexibility of Geant4.
</p>
<h3>Applications</h3>
<ul>
<li> Proton therapy and conventional radiotherapy</li>
</ul>
<div class="image-panel">
<img src="./Images/Index/ProtonNeutronShielding.png" title="Proton therapy">
<img src="./Images/Index/LINAC2.png" title="X-ray radiotherapy">
</div>
<ul>
<li> Radiology and optical photon transport </li>
</ul>
<div class="image-panel">
<img src="./Images/Index/Imaging.png" title="Radiology">
<img src="./Images/Index/OpticalPhotons.png" title="Optical photon transport">
</div>
<ul>
<li> Brachytherapy and absorbed dose in DICOM-CT </li>
</ul>
<div class="image-panel">
<img src="./Images/Index/EyeModel.png" title="Brachytherapy">
<img src="./Images/Index/Clinical_dose.png" title="Absorbed dose in DICOM-CT">
</div>
<ul>
<li> Transport throught magnetic fields and radiation detectors</li>
</ul>
<div class="image-panel">
<img src="./Images/Index/MagneticField.png" title="Transport through magnetic fields">
<img src="./Images/Index/IonizationChamber.png" title="Ionization chambers">
</div>
<h3>How to cite?</h3>
<p>
Please cite these two key references when using Open TOPAS: <br>
<ul>
<li> B Faddegon, J Ramos-Méndez, J Schümann, A McNamara, J Shin, J Perl, H Paganetti. "The TOPAS Tool for Particle Simulation, a Monte Carlo Simulation Tool for Physics, Biology and Clinical Research." Phys Med. 2020 Apr 02; 72:114-121. PMID: 32247964. PMCID: PMC7192305</li>
<li>Perl, J Shin, J Schümann, B Faddegon, H Paganetti. "TOPAS: an innovative proton Monte Carlo platform for research and clinical applications." Med Phys. 2012 Nov; 39(11):6818-37.</li>
<br>
</ul>
</p>
<hr>
<h3> Future of the TOPAS Collaboration</h3>
<p>
<p> The NIH-funded TOPAS team feels a need to address a recent addition to the <a href="https://www.topasmc.org/message-regarding-other-codes" target="_blank"> topasmc </a> website on May 6, 2024. This address can be found <a href="https://opentopas.github.io/news.html" target="_blank"> here</a>.</p>
</div>
</body>
<script src="footer.js"></script>
</html>