Main Page

From ATLAS Accelerator In-Flight Beam Program
Revision as of 15:37, June 14, 2019 by Ttang (talk | contribs)
Jump to navigation Jump to search

Landing Page for the ATLAS In-Flight Beam Wiki

The goal of this wiki is to have access to detector (locations, status, etc.), electronics, hardware, software, targets, and misc, information pertaining to in-flight beam production. The actual data collection and analysis information can be found on the ELOG.

Tools for In-Flight Beam Tuning

Experiment List

  • infl1 - 19O commissioning [Jul / Aug 18]
  • infl2 - 16C development [Aug / Oct 18]
  • infl3 - 30P development [Oct 18]
  • infl4 - 16C delivered to MUSIC / SPS [Dec 2018, Feb 2019]
  • infl5 - 30P delivered to Gretina/FMA/GODDESS [Feb/March 2019]
  • infl6 - 12B delivery to HELIOS [Apr/May 2019]
  • infl7 - 8Li delivery to HELIOS [May/June 2019]
  • infl8 - 29Al,31Si development [June 2019]
  • infl9 - 31Si to HELIOS ATLAS 1830 Wilson [June 2019]
new exp template

Hardware Information

Computers

- diag1, diag2, diag3, all on onenet running UBUNTU 18

Digitizers

- dig1, dig2


If you are either not familiar with the MediaWiki collaboration platform or have never edited this wiki before, please visit the Help page. In order to edit this wiki you must first log in.

BoxScore

BoxScore is a custom made cpp program for "almost" real-time monitoring.

github : https://github.com/goluckyryan/RealTimeReading

Grafana + InfluxDB

Current setting on June 14, 2019

When BoxScore is running at diag1, it will push the totalRate and (if any) cuts rates to the InfluxDB service at diag1 using

void WriteToDataBase(TString databaseName, TString seriesName, TString tag, float value){
   TString databaseStr;
   databaseStr.Form("influx -execute \'insert %s,%s value=%f\' -database=%s", seriesName.Data(), tag.Data(), value, databaseName.Data());
   system(databaseStr.Data());
}

The databaseName = RAISOR_exit

The seriseName = totalRate / cut1 / cut2 .... etc

The tag = exit / cross / ZD


InfluxDB

InfluxDB server is hosted at diag1.

InfluxDB server can be access via port 8086.

If the InfluxDB server is not started, it can be started by

sudo service influxdb start

Grafana

The Grafana server is hosted at diag3.

The Grafana webpage can be access using any browser

http://diag3.onenet:3000 

The login user name is admin, password is the same as diag3 login.

if the server not started (for example, the webpage is not loaded but connection to diag3 is ok.) it can be started by

sudo service grafana-server start