-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsource.php
48 lines (39 loc) · 1.8 KB
/
source.php
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
<?php
/**
* SixTrack Web – Source File
* ============================
* Veronica Berglyd Olsen, CERN BE/ABP/HSS 2018
* Created 2018-02-20
*/
$bMain = true;
require_once("includes/header.php");
?>
<article>
<h1>Source Code</h1>
<h2>SixTrack</h2>
<p>The SixTrack source code is available in the <a href="https://github.com/SixTrack/SixTrack">SixTrack GitHub repository</a>.</p>
<p>Files can be checked out with:
<pre class="code">git clone https://github.com/SixTrack/SixTrack.git</pre>
</p>
<h2>SixDesk LHC Tracking Environment</h2>
<p>The SixDesk source code is available in the <a href="https://github.com/SixTrack/SixDesk">SixDesk GitHub repository</a>.</p>
<p>Files can be checked out with:
<pre class="code">git clone https://github.com:SixTrack/SixDesk.git</pre>
</p>
<h2>Other Developements</h2>
<p>
<a href="http://github.com/SixTrack/SixDesk">SixDeskDB</a>: SixDesk environment implemented in Python/SQLite <br>
<a href="http://github.com/SixTrack/SixTrackLib">SixTrackLib</a>: C library implementing SixTrack models.
</p>
<h2>Contributing to the Code</h2>
<p>Developers are encouraged to create a GitHub fork and create pull requests.</p>
<p>Specific on going developements are hosted on the <a href="http://github.com/SixTrack">GitHub SixTrack page</a> and they will
normally be merged with the official repository as soon as the code is stable.</p>
<p>Please use the git merge functionality to keep your master branch in synch with the official repository.</p>
<p>For further details, see the <a href="/SixTrack/docs/building_sixtrack.pdf">build manual</a>.</p>
</article>
<aside>
<?php include_once($incPath."/aside_quick.php"); ?>
<?php include_once($incPath."/aside_footer.php"); ?>
</aside>
<?php require_once($incPath."/footer.php"); ?>