ATLAS Offline Software
Loading...
Searching...
No Matches
BeamSpotSummary Namespace Reference

Classes

class  BeamSpotSummary

Variables

str __author__ = 'Juerg Beringer'
str __version__ = '$Id $'
str tableSorter
str tableHeader
str runCount
str runCountLimit
 p = BeamSpotSummary()

Detailed Description

ATLAS beam spot web page for displaying beam spot job data.

Variable Documentation

◆ __author__

str BeamSpotSummary.__author__ = 'Juerg Beringer'
private

Definition at line 8 of file BeamSpotSummary.py.

◆ __version__

str BeamSpotSummary.__version__ = '$Id $'
private

Definition at line 9 of file BeamSpotSummary.py.

◆ p

BeamSpotSummary.p = BeamSpotSummary()

Definition at line 145 of file BeamSpotSummary.py.

◆ runCount

str BeamSpotSummary.runCount
Initial value:
1= """\
2<div class="text">
3<h3>%s runs(s) with tasks of type %s:</h3>
4</div>
5"""

Definition at line 49 of file BeamSpotSummary.py.

◆ runCountLimit

str BeamSpotSummary.runCountLimit
Initial value:
1= """\
2<div class="text">
3<h3>%s runs(s) with tasks of type %s, displaying last %i runs:</h3>
4</div>
5"""

Definition at line 55 of file BeamSpotSummary.py.

◆ tableHeader

str BeamSpotSummary.tableHeader
Initial value:
1= """<table cellspacing="0" class="tablesorter">
2<thead>
3<tr>
4<th>Run</th>
5<th>Stream</th>
6<th>Latest %s Task</th>
7<th>Updated</th>
8<th>Status</th>
9<th>Results</th>
10<th>Data in COOL</th>
11<th>Validation<br>Job Status</th>
12<th>Validation<br>Job Results</th>
13<th>Links</th>
14</tr>
15</thead>
16<tbody>
17"""

Definition at line 31 of file BeamSpotSummary.py.

◆ tableSorter

str BeamSpotSummary.tableSorter
Initial value:
1= """\
2<script type="text/javascript" src="../js/jquery-latest.js"></script>
3<script type="text/javascript" src="../js/jquery.tablesorter.js"></script>
4<script type="text/javascript" id="js">
5$(document).ready(function() {
6 $("table").tablesorter({
7 headers: { 3: { sorter: "shortDate" } },
8 sortList: [[0,1]]
9 });
10});
11</script>
12"""

Definition at line 18 of file BeamSpotSummary.py.