AIDA GELINA BRIKEN nToF CRIB ISOLDE CIRCE nTOFCapture DESPEC DTAS EDI_PSA 179Ta CARME StellarModelling DCF K40
  nToF, Page 3 of 4  ELOG logo
ID Date Authordown Subject
  36   Sat Oct 8 11:56:49 2022 Nikolay SosninSilicon Strips of Concern

DEED 6 and 9 no signal throughout the campaign.

EFED 27 high oscillations in baseline throughout the campaign.

  37   Sat Oct 8 11:57:36 2022 Nikolay SosninChange of Detector-Target Separation

Increased detector-target (LiF 3) separation by 1.5 cm. Had to replace the support strut under the detectors due to the previous one being fuly retracted even for minimal target-detector separation. This change may affect detector rotation relative to the target.

  38   Sun Oct 9 20:57:54 2022 Nikolay SosninDetectors in-beam, no target

After long beam-off, changed detector mount by moving it 2 cm forward into the beam, after removing LiF 3.

  40   Sun Oct 9 21:07:02 2022 Nikolay SosninBoron Sample 3 Measurement

21:15 Changed from detectors in-beam to boron-10 sample 3 in-beam (in-beam measurement got 1000 triggers, 500 of which were dedicated). The sample was mounted identically to LiF 3. An attempt was made to replace the 20-micron dE detector with a 50-micron one, but the screwholes on the 50-micron detector did not match the 300-micron E-detector ones and therefore could not be mounted. 20-micron detector was therefore re-attached. Planning to run for 12 hours with boron than dismount.

  44   Mon Jul 31 10:21:41 2023 Nikolay Sosninn_TOF Data and Filtering
  50   Thu Aug 10 10:50:15 2023 Nikolay SosninAl26 Chamber Cabling/Vacuum/NIM
  51   Thu Aug 10 11:30:32 2023 Nikolay SosninSilicons and LiF3+Gafchromic Target
  59   Fri Aug 11 13:16:56 2023 Nikolay SosninE Front Incorrect Cabling

E front 2x16-way to 1x34-way IDC cable from the Junction Box to the IDC-Lemo 00 adaptor was found to be inserted upside-down - the 16-way IDC connectors did not have polarisation keys - meaning the E detector p+n junction strip signals collected with 26Al for the first night are not working. Signals from the dE p+n junction strips and E n+n Ohmic strips will be OK. The mistake occurred at the conclusion of the noise tests yesterday - see https://elog.ph.ed.ac.uk/nToF/52

The 2x16-way to 1x34-way IDC cable without polarisation keys has now been replaced.

Run 216417 and onwards have correct cabling. For runs before that, E back and dE are still reliable.

  60   Fri Aug 11 16:50:58 2023 Nikolay SosninEDET24

After inserting aluminium target, previously-dead channel 24 on EDET was re-plugged into a 12-bit card SPD02872. It is the only EDET on 12-bit card, the rest are on 14-bit. From pulsers, there appears to be a 90 ns offset from this EDET to others, with EDET24 preceeding the rest. The last channel on 14-bit cards was broken, hence havng to use 12-bit.

  61   Sat Aug 12 09:24:19 2023 Nikolay Sosnin26Al Protons

Here is a Google spreadsheet for counting protons for the runs:

https://docs.google.com/spreadsheets/d/1INX8G9GAu-M70SdZdz55qXnMZNXKXLW7xfFH-eaLuQw/edit?usp=sharing

  65   Thu Aug 17 10:26:51 2023 Nikolay SosninData Processing

To run raw2root on LXPLUS, you will need to add the following line to your .bashrc, performed using

gedit ~/.bashrc &

then paste line at the bottome of the file

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/afs/cern.ch/user/n/ntofuser/public

then save and close the gedit (a linux text editor similar to Windows Notepad). Text file .bashrc is responsible for setting correct paths to various system settings when you log in. The line above sets correct libraries for raw2root from the n_TOF official directories.

 

The old version of raw2root which I use is stored in a directory on EOS accessible via LXPLUS:

cd /eos/home-n/nsosnin/public/raw2root

If you examine the contents of the directory using command ls, there will be two folders: ntoflib and prg. The relative location of these folders on your system should always be the same, and you do not need to do anything in the ntoflib directory, so we can explore the next directory

cd prg && ls

Command cd means change directory and ls is list contents, double-& chains commands in a sequence. Your terminal should now display two more directories: detector and raw2root. detector is a list of codes for various detector types, examine its contents with ls detector. We use MWDdetector.cc and its library header file MWDdetector.h. All the filters are defined and can be changed in MWDdetector.cc, which is a C++ code. You can browse and change its contents with gedit. raw2root codes, however, are run from the raw2root directory, so let's change to it

cd raw2root && ls

When you list the contents of this directory there will be many files, none of which you need to edit. There will also be a directory called Traces, which I created as the default location for signal traces to be written, if relevant sections of MWDdetector.cc are uncommented (discussed below). If you are happy with the contents of MWDdetector.cc, you need to re-compile raw2root. Using C++ code, unlike some others, is a two-step process: compilation and execution. Various bits of code in raw2root and its libraries are put together into one executable file called raw2root during compilation stage, and then the code can be run by executing the executable. To compile raw2root, you need to be in its directory, which you can check by typing in

pwd

which should then display /eos/home-n/nsosnin/public/raw2root/prg/raw2root and if you it displays something else, use

cd /eos/home-n/nsosnin/public/raw2root/prg/raw2root

To compile raw2root in this directory use

make clean && make proper && make

The code will start compiling and do so for a while. It will display some warnings associated with other older n_TOF codes. There should, however, be no errors. If there are errors, something went wrong in MWDdetector.cc, so try troubleshooting it by Googling the errors (the line with the error will also display two numbers, something like error: MWDdetector.cc:1211:45, and the the second number is the line where the problem occurred). C++ errors are a dark art though, so feel free to contact me for help.

If the compilation displays no errors (woo!), the code compiled successfully. To test it, two things are needed: UserInput file and .raw.finished file. UserInput file called UserInput_Silicons.h, which I use, is already stored in that directory. If you examine it with gedit, you will see lines with detector names and numbers and the filtering parameters. The parameters are read in at the top of MWDdetector.cc in order, so you can follow the variables they are read into throughout the code to figure out which parameter does what (this is not an easy task!).

.raw.finished files are binary data files with detector signal traces, which raw2root filters and makes into ROOT files. These need to be downloaded from CERN servers (I left two example ones in the directory though). While the experiment is running these are stored, but will eventually be deleted, so if they don't download, contact me on staging data (i.e. writing it onto servers again after deletion). To download such a binary file for this experiment to the directory you are in use

xrdcp xroot://eosctapublicdisk.cern.ch//eos/ctapublicdisk/archive/ntof/2023/EAR2/26Al_DSSSD/216408/stream1/run216408_1_s1.raw.finished .

Here, xrdcp command is CERN's own copying command, which takes data from the directory listed in the command. I have highlighted above in yellow the bits you may need to change in the command. The first two are simply run number. The last one is the data segment. n_TOF data within a run are subdivided into 20 proton bunch segments, so one such .raw.finished file that you download contains 20 bunches (which is a very small amount of data, so if you need mass_processing, contact me or Fran (francisco.garcia.infantes@cern.ch) at n_TOF). You can download different segments by changing this number. Bunches 1-20 are in segment 0, bunches 21-40 in segment 1, etc.

Once you have downloaded the file of interest execute raw2root with command

./raw2root -p UserInput_Silicons.h -f run216408_1_s1.raw.finished -r rootout.root

This will run for some time, applying settings from UserInput to filters in MWDdetector.cc, and running the filters over data in the .raw.finished file. This will produce an output file called rootout.root, but feel free to change the name in the command to whatever you like, otherwise you will just keep overwriting the old files. This output file will have the amplitudes, times etc. of all the extracted signals listed, but it will not produce traces, as that is not standard raw2root functionality, and requires my code, which I added to MWDdetector.cc

To print traces, open MWDdetector.cc using

gedit ../detector/MWDdetector.cc &

Note, ".." on Linux means "previous directory", so the command above will leave raw2root directory, go to detector directory and open the code. In this code, uncomment (i.e. remove // or /* or */ characters in C++) from lines 310-312, 441, 442, 465 and 529. This will now print trace ROOT files into the Traces directory. Warning: this runs very slowly, as it's a lot of data being written to disk!

The if() statment on line 465 allows you to gate on specific bunches and detectors for producing traces. The contents of histograms inside the output files can be understood in terms of what MWDdetector.cc does by reading the lines 514-522 of that code. This should be everything you need to get started with processing traces and filtering outputs. Good luck!

  28   Thu May 26 09:20:32 2022 Nick / ClaudiaInventory of Items at n_TOF for (n,cp) experiments

Detectors currently in the boxes:

2x MSL type W1(SS)-50, 2902-4 (53um), 2940-6 (55um)

1x MSL type W1(SS)-20 2837-33 (20um)

1x MSL type W1(DS?) 1230-10  (500 or 300 um)

1x MSL type W1(DS)-500 1194-9 (494um)

 

Three aluminium crates contain 26Al(n, alpha) kit from EAR2, and was in the barracks (building 6547) near detector lab by EAR1 entrance. A list is attached and photos can be found on Dropbox:

https://www.dropbox.com/sh/68k1xove2zr1bmj/AADKvN8wR_Ia2EwZMOXZqdMCa?dl=0

  76   Thu Sep 12 11:07:29 2024 Nick40K Borrowed Items

We borrowed from n_TOF:

1x O-ring for circular side-flanges on the chamber (the borrowed part has a small green marker cross on it)

10x LIMO-to-BNC connectors (BNC female) from electronics lab outside EAR1

  78   Thu Sep 12 15:26:30 2024 NickEAR2 Periodic Noise
  41   Mon Jul 3 13:01:30 2023 EmmanuelBoxes for nTOF experiments to CERN

Box 1

1. RC412 Cables

2. Screws and parts for rails

3. Small rails

 

Box 2

1. Vacuum valves

2. IDC cables

 

Box 3 (Detectors)

1. WI-20

3186-9

2. WI-150

3458-4

3. WI-150

3458-1

 

 

Box 4 (Detector)

1. WI-20

3485-12

*List

 

**We also have the tube for the long rails

 

  68   Tue Sep 5 16:09:45 2023 EmmanuelDrop in gain for DEED 14

Dear all,

There was an issue with one of the strips of the deltaE detector (DEED 14), for run216644. The gain dropped to almost a factor of 3. Find attached.

Somehow, it was fixed, but still lags, when compared to other strips of deltaE. This was tested for a more recent run, run216651. Find attached.

I also checked a bit older run (run216637) and they look similar.. Find attached. Maybe we should figure out if this will be a problem for the DEED14 strips.

 

NOTE: The plots have the run number at the top-center.

 

Emmanuel Odusina

 

 

  69   Wed Sep 27 09:54:06 2023 Emmanuel10B sample in

We switched from Aluminium target to Boron Target (number 1) on Tuesday (26th of Sept.). The Aluminium target was placed in the material room by the RP. We will change to LiF (number 3) on Thursday (28th of Sept.)

  70   Thu Sep 28 15:32:16 2023 EmmanuelLiF sample in

We switched from 10B target (number 1) to LiF target (number 3). We planned to take this measurement for one day.

  71   Mon Oct 2 08:53:06 2023 EmmanuelEmpty Frame

An empty frame (on the top) was placed on Friday night.

  72   Thu Dec 7 09:48:23 2023 EmmanuelMWDdetector and User Input

MWDdetector and UserInput

ELOG V3.1.4-unknown