EMMA: Difference between revisions
Jump to navigation
Jump to search
m (26 revisions imported) |
|||
| (4 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
=== General info === | === General info === | ||
* https://midemma01.triumf.ca - EMMA MIDAS DAQ | * https://midemma01.grsi.triumf.ca - EMMA MIDAS DAQ | ||
* https://midemma01.triumf.ca/rootana/ - EMMA analyzer | * https://midemma01.grsi.triumf.ca/rootana/ - EMMA analyzer | ||
* https://elog.triumf.ca/EMMA/ - EMMA elog | * https://elog.triumf.ca/EMMA/ - EMMA elog | ||
| Line 104: | Line 104: | ||
online analyzer can be invoked from any directory using emmana.exe . | online analyzer can be invoked from any directory using emmana.exe . | ||
=== MPDD32 development station === | |||
* separate setup from the EMMA main experiment | |||
* home directory is on daq00 | |||
* to start MIDAS: | |||
<pre> | |||
ssh emma@daq13.triumf.ca | |||
mhttpd -D | |||
open https://daq13.triumf.ca/ | |||
go to "Programs" page, start mserver, mlogger, feemma, ana | |||
</pre> | |||
* to update, rebuild feemma: | |||
<pre> | |||
ssh emma@daq13 | |||
cd online/src | |||
edit feemma.cxx | |||
make | |||
</pre> | |||
* to run feemma: | |||
<pre> | |||
ssh emma@lxdaq21 | |||
online/src/feemma.exe -h daq13 | |||
</pre> | |||
* to update, rebuild emmana | |||
<pre> | |||
ssh emma@daq13 | |||
cd online/ana | |||
edit mdpp32_module.cxx | |||
make | |||
./emmana.exe -R8082 --jsroot | |||
</pre> | |||
Latest revision as of 21:44, 10 August 2026
Information on EMMA DAQ
General info
- https://midemma01.grsi.triumf.ca - EMMA MIDAS DAQ
- https://midemma01.grsi.triumf.ca/rootana/ - EMMA analyzer
- https://elog.triumf.ca/EMMA/ - EMMA elog
EMMA DAQ computers
- midemma01 - main daq computer in the ISAC2 CR#2 (TIGRESS)
- midemma02 - terminal in ISAC2 on the table next to the EMMA platform
- lxemma01 -EMMA VME processor (in the VME crate on the EMMA platform)
Storage:
- 10TB ZFS volume on midemma01 mounted on the ISAC cluster machines as /emma/data1/emma
DAQ instructions
To start the DAQ:
- login emma@midemma01
- run "mhttpd -D"
- open web page https://midemma01.triumf.ca
- go to the Programs page, start all programs in order
- go to the Status page, start a run, stop a run
To start the analyzer:
- login emma@midemma01
- cd online/ana
- run ./emmana.exe -g -R8081
- if a run is active, watch the histograms update every 15 seconds on the canvases
- open web page: https://midemma01.triumf.ca/rootana/ (tailing slash is important!), watch the histograms on the web, click "monitoring" to enable periodic update.
- to rebuild the analyzer, edit emma_module.cxx, then run "make". Use "make clean" to remove old object files, etc. Commit changes using "git commit ."
To change PID gates:
- Open emma_module.h located in midemma01:~/packages/EMMA-Collaboration/emmana/include
- modify values in lines 32 to 56. Specifically, variables called Total_E_low & Total_E_high, eICtot_min & eICtot_max, for the ICsum+Silicon and ICsum gates, respectively.
- Save and stop/start rootana from the midas programs page.
TDC Channels
| TDC Channel | Signal |
|---|---|
| [0] | PGAC Anode Top |
| [1] | PGAC Anode Middle |
| [2] | PGAC Anode Bottom |
| [3] | PGAC Cathode Right |
| [4] | PGAC Cathode Left |
| [5] | PGAC Cathode Top |
| [6] | PGAC Cathode Bottom |
| [7] | Trigger (OR of Anodes) |
| [8] | ISAC RF |
FAQ
If the DAQ crashes here are some suggested diagnostics checks:
- Check connection to feemma (VME crate): Type "ping lxemma01". If it does not respond then power cycle the VME crate at the focal plane.
- Check the status of the mlogger program: Sometimes an interrupted connection can cause problems with the mlogger program, which will result in being unable to restart a new run. Type "ps aux | grep mlogger". If multiple mlogger programs are running then midemma01 will need to be restarted. You must perform a hard restart by holding down the power button.
- Once both midemma01 and the VME crate are back up and running, follow the DAQ restart instructions listed above or type "start_daq.sh" in terminal.
Manuals
- TDC V1190 Manual: File:V1190 REV14.pdfDescription
- MADC-32 Manual: File:MADC-32.pdfDescription
Contact
- Barry - davids
- Matt - mwilliams
- Martin - malcorta
- Konstantin - olchansk (daq group)
- Thomas - lindner (daq group)
Other info
- main account: emma@ISAC-NIS (physically on isdaq00)
- data directory: /home/emma/Experiments (physically on isdaq01)
online analyzer can be invoked from any directory using emmana.exe .
MPDD32 development station
- separate setup from the EMMA main experiment
- home directory is on daq00
- to start MIDAS:
ssh emma@daq13.triumf.ca mhttpd -D open https://daq13.triumf.ca/ go to "Programs" page, start mserver, mlogger, feemma, ana
- to update, rebuild feemma:
ssh emma@daq13 cd online/src edit feemma.cxx make
- to run feemma:
ssh emma@lxdaq21 online/src/feemma.exe -h daq13
- to update, rebuild emmana
ssh emma@daq13 cd online/ana edit mdpp32_module.cxx make ./emmana.exe -R8082 --jsroot