Skip to content

Commit

Permalink
Merge pull request #4 from A-lxe/develop-lxplus
Browse files Browse the repository at this point in the history
Usability and bug fixes
  • Loading branch information
jkguiang authored May 9, 2018
2 parents 32d9159 + e0fd898 commit bb73084
Show file tree
Hide file tree
Showing 18 changed files with 481 additions and 884 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# Editor artifacts
*.swp

# Compile artifacts
*.pyc

# run-offline.py defaults
offline/
db/
tmp/

22 changes: 22 additions & 0 deletions configs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,22 @@
"hists":[
{
"ks_cut":0.0,
"norm_type": "row",
"path":"Occupancy/hORecHits"
},
{
"ks_cut":0.0,
"norm_type": "row",
"path":"Occupancy/hOSegments"
},
{
"ks_cut":0.0,
"norm_type": "row",
"path":"Occupancy/hOStrips"
},
{
"ks_cut":0.0,
"norm_type": "row",
"path":"Occupancy/hOWires"
},
{
Expand Down Expand Up @@ -67,6 +71,24 @@
{
"path":"Timing/cscLCTTiming*",
"norm_type": "row"
},
{
"path":"emtfTrackEta"
},
{
"path":"emtfTrackMode"
},
{
"path":"emtfTrackPhi"
},
{
"path":"emtfTrackPt"
},
{
"path":"emtfTracknHits"
},
{
"path":"emtfnTracks"
}
]
}
Expand Down
190 changes: 0 additions & 190 deletions public/database.php

This file was deleted.

43 changes: 28 additions & 15 deletions public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
<ul class="nav nav-tabs" id="navbar" role="tablist">
<li role="presentation" class="active"><a href="./">AutoDQM</a></li>
<li role="presentation"><a href="search.php">Search</a></li>
<li role="presentation"><a href="database.php">Database</a></li>
<li role="presentation"><a id="plots_url" href="plots.php">Plots</a></li>
</ul>
Expand All @@ -56,33 +55,47 @@
<div class="row">
<div class="col-lg-6">
<div class="row"><h2>Sample</h2><hr></div>
<div class="row">
<div class="col-lg-12">
<div class="form-group">
<h3>Subsystem</h3>
<select class="form-control" id="select-subsystem">
<option value="" disabled selected hidden>Select a subsystem...<option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h3>Data Run</h3>
<div class="form-group">
<label for="select-series">Series</label>
<select class="form-control" id="select-series">
<label for="data-select-series">Series</label>
<select class="form-control" id="data-select-series">
<option value="" disabled selected hidden>Select a series...<option>
</select>
<label for="select-sample">Sample</label>
<select class="form-control" id="select-sample">
<label for="data-select-sample">Sample</label>
<select class="form-control" id="data-select-sample">
<option value="" disabled selected hidden>Select a sample...<option>
</select>
<label for="select-subsystem">Subsystem</label>
<select class="form-control" id="select-subsystem">
<option value="CSC">CSC</option>
<option value="EMTF">EMTF</option>
<label for="data-select-run">Data Run</label>
<select class="form-control" id="data-select-run">
<option value="" disabled selected hidden>Input a data run...<option>
</select>
</div>
</div>
<div class="col-lg-6">
<h3>Reference Run</h3>
<div class="form-group">
<label for="select-data-run">Data Run</label>
<select class="form-control" id="select-data-run">
<option value="" disabled selected hidden>Input a data run...<option>
<label for="ref-select-series">Series</label>
<select class="form-control" id="ref-select-series">
<option value="" disabled selected hidden>Select a series...<option>
</select>
<label for="ref-select-sample">Sample</label>
<select class="form-control" id="ref-select-sample">
<option value="" disabled selected hidden>Select a sample...<option>
</select>
<label for="select-ref-run">Reference Run</label>
<select class="form-control" id="select-ref-run">
<label for="ref-select-run">Reference Run</label>
<select class="form-control" id="ref-select-run">
<option value="" disabled selected hidden>Input a reference run...<option>
</select>
</div>
Expand Down
Loading

0 comments on commit bb73084

Please sign in to comment.