AIDA GELINA BRIKEN nToF CRIB ISOLDE CIRCE nTOFCapture DESPEC DTAS EDI_PSA 179Ta CARME StellarModelling DCF K40
  BRIKEN, Page 14 of 21  ELOG logo
ID Date Author Subject
  154   Tue Nov 22 09:26:04 2016 A. Tarifeno-SaldiviaNoise check
Run for checking the noise just after turn on the crates, without high voltages on the PREAMPS.

Attached calibrated histogram for the full BRIKEN detector. 

Files:
161122_1820_000.dlt
161122_1820_000.root

Pulser counts: 1.179e4
Attachment 1: 161122_1820_000_BRIKEN.svg
161122_1820_000_BRIKEN.svg
  153   Tue Nov 22 08:28:36 2016 A. Tarifeno-Saldivia et alNew directory and Config File
A new directory in the IFICdaq computer has been created for the parasitic measurements during the Fallon Beam Time.

The path of the folder is:
/home/dacq/Desktop/Data/2211Fallon/

All the work during this campaign will be stored in folders inside here.

For the period before the parasitic experiments, the test and check of the detector will be stored in 
/home/dacq/Desktop/Data/2211Fallon/2211FallonPreparation

The Config file for the test is:

161107Conf_BrikenFull.xlsx
  152   Sun Nov 20 13:02:06 2016 Jorge, Alavaro, JoseDACQ
Gasific-7.0 Short Manual (Preliminary)
Attachment 1: Gasific70Manual.pdf
Gasific70Manual.pdf Gasific70Manual.pdf Gasific70Manual.pdf Gasific70Manual.pdf Gasific70Manual.pdf Gasific70Manual.pdf Gasific70Manual.pdf Gasific70Manual.pdf
  151   Sun Nov 20 12:28:27 2016 Jorge, Alvaro, JoseDACQ
Updated run protocol
Attachment 1: GasificShort.pdf
GasificShort.pdf GasificShort.pdf GasificShort.pdf GasificShort.pdf GasificShort.pdf
  150   Fri Nov 11 08:07:18 2016 BCR SG NTBBRIKEN Hit Visualization

These are the files used to create and visualize the hit patterns of the BRIKEN detector.

There are three files needed plus one input data file. The three files are "HybridBRIKENPhysicalHistogram.hpp", "HybridBRIKENPhysicalHistogram.cpp", and "HybryidBRIKEN_Tube_Info_1.txt". These files are attached to this eLog entry.

In order to run this type in a terminal

root -l HybidBRIKENPhysicalHistogram.cpp+

The plus is important, it tells ROOT to compile this with the gcc compiler and then run that compiled version of the code. It runs slow, if at all, in the ROOT C++ interpreter CINT.

The code has been tested with ROOT v5.32 and v5.34, not version 6.

At the bottom of the HybidBRIKENPhysicalHistogram.cpp file is the "main program". In it you can set the input data file, which should be a BRIKEN online root output file, and the 3He energy cuts. It is easiest if all the files are in the same folder. If there are any questions please feel free to email B. Charles (Charlie) Rasco.

Attachment 1: HybridBRIKENPhysicalHistogram.cpp
//
//  HybridBRIKENPhysicalHistogram.cpp
//  
//
//  Created by Bertis Charles Rasco on 11/4/16.
//
//

#include "HybridBRIKENPhysicalHistogram.hpp"

#include <cmath>
#include <fstream>
#include <iostream>
#include <sstream> 
#include <string>

#include <stdio.h>
//#include <stdlib.h>

#include "TH1F.h"
#include "TRandom3.h"
#include "TFile.h"

// ROOT Needs this for some reason.
HybridBRIKENHistogram::HybridBRIKENHistogram(): TH2Poly()
{
}

HybridBRIKENHistogram::HybridBRIKENHistogram( const char *name, const char *title, Double_t xlow, Double_t xup, Double_t ylow, Double_t yup ):
  TH2Poly( name, title, xlow, xup, ylow, yup )
{
  this->ReadinTubes();
  
  this->FillTubeCountsRandom();
  
//  this->SetupTubes();
//  this->Draw();
}

HybridBRIKENHistogram::HybridBRIKENHistogram( const char *name, const char *title, Double_t xlow, Double_t xup, Double_t ylow, Double_t yup, TString inputFileName ):
  TH2Poly( name, title, xlow, xup, ylow, yup )
{
  m_InputFileName = inputFileName;
  
  
  this->ReadinTubes();
  this->ReadInDataFromFile();
//  this->SetupTubes();
//  this->Draw();
}


HybridBRIKENHistogram::~HybridBRIKENHistogram()
{
}

void HybridBRIKENHistogram::ReadinTubes( void )
{
  std::ifstream file("HybridBRIKEN_Tube_Info_1.txt");
  std::string str; 
  
  Int_t lineCount = 0;
  Int_t tubeCount = 0;
  Double_t rad;
  Double_t pos[2];
  Int_t tubeID;
  Int_t ringID;
  Char_t tubeType[20];
  
//  std::stringstream ss;
//  std::string::size_type sz;
  
  while ( std::getline(file, str) )
  {
    // Process str
    std::stringstream ss( str);
    if( lineCount > 0 )
    {
      tubeType[0] = 'X';
      
      ss >> tubeID >> tubeType >> rad >> pos[0] >> pos[1] >> ringID;
      rad *= 0.5;// 2R is what is in file.
      
//      tubeID = std::stoi( str, &sz );
      if( tubeID > 0 && (tubeType[0]=='R' || tubeType[0]=='U' || tubeType[0]=='O' ) )
      {
        if( tubeType[0] != 'O' ) m_Tubes.push_back( new HeTube( rad, pos[0], pos[1], tubeID, ringID, tubeType ) );
        else if( tubeType[0] == 'O' )
        {
          tubeType[1] = tubeType[4];
          m_Tubes.push_back( new HeTube( rad, pos[0], pos[1], tubeID, ringID, tubeType ) );
        }
        tubeCount++;
      }
    }
    
//    if( lineCount < 11 )
//    {
//      std::cout << str << std::endl;
//      std::cout << tubeID << ", " << tubeType[0] << tubeType[1] << ", " << rad << ", " << pos[0] << ", " << pos[1] << ", " << ringID << std::endl;
//      ss >> tubeID >> tubeType >> rad >> pos[0] >> pos[1] >> ringID;
//    }
    
    lineCount++;
  }

  Int_t binID;
  
//  Double_t minX = m_Tubes[0]->pos[0] - m_Tubes[0]->radius;
//  Double_t maxX = m_Tubes[0]->pos[0] + m_Tubes[0]->radius;
//  Double_t minY = m_Tubes[0]->pos[1] - m_Tubes[0]->radius;
//  Double_t maxY = m_Tubes[0]->pos[1] + m_Tubes[0]->radius;
// Fix   
//  binID = this->AddBin( minX, minY, maxX, maxY );
  binID = this->AddCircularBin( 0 );
  
//  std::cout << "X: " << this->GetNbinsX() << std::endl;
//  std::cout << "Y: " << this->GetNbinsY() << std::endl;
//  std::cout << "Z: " << this->GetNbinsZ() << std::endl;

//  std::cout << "BinID: " << binID << std::endl;
//  this->SetBinContent( binID, 9);

  for( Int_t i = 1; i < (Int_t) m_Tubes.size(); i++ )
  {
//    minX = m_Tubes[i]->pos[0] - m_Tubes[i]->radius;
//    maxX = m_Tubes[i]->pos[0] + m_Tubes[i]->radius;
//    minY = m_Tubes[i]->pos[1] - m_Tubes[i]->radius;
//    maxY = m_Tubes[i]->pos[1] + m_Tubes[i]->radius;
// Fix AddCircularBin
//    binID = this->AddBin( minX, minY, maxX, maxY );
    binID = this->AddCircularBin( i );
//    std::cout << "BinID: " << binID << std::endl;
//    this->SetBinContent( binID, 15 + binID * 11);
  }
  
  std::cout << "Number of Lines: " << lineCount << std::endl;// = How many tubes in total?
  std::cout << "Number of Tubes: " << binID << std::endl;// = How many tubes in total?
  
//  std::cout << "Number of Bins: " << this->GetNcells() << std::endl;// = How many tubes in total?
}

void HybridBRIKENHistogram::SetupTubes( void )
{
// 1" tubes
  const Int_t maxN1 = 8;
  for( Int_t i = 0; i < maxN1; i++ )
  {
    m_Tubes.push_back( new HeTube(0.5, 2.0 * cos( i * 6.28 / maxN1 ), 2.0 * sin(i * 6.28 / maxN1 ), i, 1, "RI" ) );
  }

// 2" tube at 14" radius
  const Int_t maxN = 3;
  for( Int_t i = 0; i < maxN; i++ )
  {
    m_Tubes.push_back( new HeTube(1.0, 14.0 * cos( i * 6.28 / maxN ), 14.0 * sin(i * 6.28 / maxN ), i, 2, "O2" ) );
  }
  
  Int_t binID;
  
  Double_t minX = m_Tubes[0]->pos[0] - m_Tubes[0]->radius;
  Double_t maxX = m_Tubes[0]->pos[0] + m_Tubes[0]->radius;
  Double_t minY = m_Tubes[0]->pos[1] - m_Tubes[0]->radius;
  Double_t maxY = m_Tubes[0]->pos[1] + m_Tubes[0]->radius;

// Fix this  
  binID = this->AddBin( minX, minY, maxX, maxY );
  
//  std::cout << binID << std::endl;
//  this->SetBinContent( binID, 9);
  
  for( Int_t i = 0; i < (Int_t) m_Tubes.size(); i++ )
  {
    minX = m_Tubes[i]->pos[0] - m_Tubes[i]->radius;
    maxX = m_Tubes[i]->pos[0] + m_Tubes[i]->radius;
    minY = m_Tubes[i]->pos[1] - m_Tubes[i]->radius;
    maxY = m_Tubes[i]->pos[1] + m_Tubes[i]->radius;
    
// Fix this  
    binID = this->AddBin( minX, minY, maxX, maxY );
  
//    std::cout << binID << std::endl;
//    this->SetBinContent( binID, 15 + binID * 11);
  }
}

void HybridBRIKENHistogram::ReadInDataFromFile( void )
{
  const Int_t lowHeCut = 600;//20;// Cut is by bin not by energy. But for 1 keV per bin they are the same.
  const Int_t highHeCut = 900;//200;// Cut is by bin not by energy. But for 1 keV per bin they are the same.
  
  m_InputFile = new TFile( m_InputFileName );
  
  Int_t binID;
  Double_t counts;

  char tempCh[20];
  for( Int_t i = 0; i < m_Tubes.size(); i++ )
  {
    binID = i + 1;
    TString histName("He");
    if( binID < 10 )
    {
      histName.Append("00");
    }
    else if( binID < 100 )
    {
      histName.Append("0");
    }
//    else if( binID < 1000 )
//    {
//    }
    
//    histName.Append( TString::Itoa( (Int_t) binID, 10 ) );// Works for ROOT 5.34, but not for 5.32
//      itoa(binID,tempCh,10);// Does not work for 5.32 unkown if works for 5.34
      sprintf (tempCh, "%d", binID);// works for 5.32
      histName.Append( TString( tempCh ) );  
//    std::cout << histName << std::endl;
    
    TH1F *histogram = (TH1F*)m_InputFile->Get( histName.Data() );
    counts = histogram->Integral( lowHeCut, highHeCut );
    
    this->SetBinContent( binID, counts);
  }
}

void HybridBRIKENHistogram::FillTubeCountsRandom( void )
{
  TRandom3 rand;
//  for( Int_t i = 0; i < this->GetNbins() ; i++)
//  {
//    hist->Fill( rand.Uniform(1.0,140.0) );
//  }
  for( Int_t i = 1; i <= (Int_t) m_Tubes.size(); i++ )
  {
    this->SetBinContent(i, rand.Gaus(1000., 50.0) );
  }
  
}

Int_t HybridBRIKENHistogram::AddCircularBin( Int_t tubeID )
{
  Int_t binID;
  Double_t r = m_Tubes[tubeID]->radius;
  Double_t theta;
  
  const Int_t N = 16;
  Double_t* x;
  Double_t* y;
  
  x = new Double_t[N];
  y = new Double_t[N];
  
  
  for( Int_t i = 0; i < N; i++ )
  {
    theta = i * 2.0 * 3.1415 / N;
    x[i] = m_Tubes[tubeID]->pos[0] + r * cos( theta );
    y[i] = m_Tubes[tubeID]->pos[1] + r * sin( theta );
  }
  
  binID = this->AddBin( N, x, y );
  
//  Double_t minX = m_Tubes[tubeID]->pos[0] - m_Tubes[tubeID]->radius;
//  Double_t maxX = m_Tubes[tubeID]->pos[0] + m_Tubes[tubeID]->radius;
//  Double_t minY = m_Tubes[tubeID]->pos[1] - m_Tubes[tubeID]->radius;
//  Double_t maxY = m_Tubes[tubeID]->pos[1] + m_Tubes[tubeID]->radius;
//
////  
//  binID = this->AddBin( minX, minY, maxX, maxY );
  
  return binID;
}

//***************************************************************************************
// Main Program...
void HybridBRIKENPhysicalHistogram( void )
{
  Double_t halfHDPEWidth = 500.0;// mm
//  TString inputFileName( "161103_1426_152Eu.root" );
//  TString inputFileName( "161103_1319_252Cf.root" );
//  TString inputFileName( "161107_0833_Overnight.root" );
//  TString inputFileName( "161108_1609_ShortBackground.root" );
//  TString inputFileName( "161013_1518_137Cs60Co.root" );
  TString inputFileName( "161108_2323_717273Ni.root" );

  
  HybridBRIKENHistogram *hist = new HybridBRIKENHistogram("hBR", "HybridBRIKEN", -halfHDPEWidth, halfHDPEWidth, -halfHDPEWidth, halfHDPEWidth, inputFileName );
//  HybridBRIKENHistogram *hist = new HybridBRIKENHistogram("hBR", "HybridBRIKEN", -halfHDPEWidth, halfHDPEWidth, -halfHDPEWidth, halfHDPEWidth );
    
  hist->Draw("COLZ");  
}
Attachment 2: HybridBRIKENPhysicalHistogram.hpp
//
//  HybridBRIKENPhysicalHistogram.hpp
//  
//
//  Created by Bertis Charles Rasco on 11/4/16.
//
//

#ifndef HybridBRIKENPhysicalHistogram_hpp
#define HybridBRIKENPhysicalHistogram_hpp

#include <vector>

#include "TFile.h"
#include "TH2Poly.h"
#include "TObject.h"
#include "TString.h"

//class TFile;

class HeTube
{
public:
 HeTube( Double_t r, Double_t x, Double_t y, Int_t tID, Int_t rID, char tubeTypeChars[2] )
  { radius = r; pos[0] = x; pos[1] = y; tubeID = tID; ringID = rID; 
    tubeType[0] = tubeTypeChars[0]; tubeType[1] = tubeTypeChars[1]; }

//private:
  Double_t radius;
  Double_t pos[2];
  Int_t tubeID;
  Int_t ringID;
  Char_t tubeType[2]; // RI (RIKEN), UP (UPC), O1 (ORNL1), O2 (ORNL2)
};


class HybridBRIKENHistogram : public TH2Poly
{
public:
  HybridBRIKENHistogram();// ROOT needs this to be defined if it is inherited from a ROOT class.
  HybridBRIKENHistogram( const char *name, const char *title, Double_t xlow, Double_t xup, Double_t ylow, Double_t yup );
  HybridBRIKENHistogram( const char *name, const char *title, Double_t xlow, Double_t xup, Double_t ylow, Double_t yup,
    TString inputFileName );

  ~HybridBRIKENHistogram();
  
  ClassDef(HybridBRIKENHistogram,1);// ROOT also needs this if it is inherited from a ROOT class. Not sure what the 1 means.
private:

  void ReadinTubes( void );
  void SetupTubes( void );
  void ReadInDataFromFile( void );

  void FillTubeCountsRandom( void );

  Int_t AddCircularBin( Int_t tubeID );
  
  TString m_InputFileName;
  TFile *m_InputFile;
  
  std::vector<HeTube*> m_Tubes;
};

#endif /* HybridBRIKENPhysicalHistogram_hpp */
Attachment 3: HybridBRIKEN_Tube_Info_1.txt
ID Type 2R(mm) X(mm) Y(mm) RING
1 RIKEN 27.5 -77.45 -39.25 1
2 RIKEN 27.5 -77.45 0 1
3 RIKEN 27.5 -77.45 39.25 1
4 RIKEN 27.5 -106.052 -19.625 2
5 RIKEN 27.5 -106.052 19.625 2
6 RIKEN 27.5 -134.655 0 3
7 RIKEN 27.5  77.45 -39.25 1
8 RIKEN 27.5  77.45 0 1
9 RIKEN 27.5  77.45 39.25 1
10 RIKEN 27.5  106.052 -19.625 2
11 RIKEN 27.5  106.052 19.625 2
12 RIKEN 27.5  134.655 0 3
13 RIKEN 27.5 -177.45 -39.25 1
14 RIKEN 27.5 -177.45 0 1
15 RIKEN 27.5 -177.45 39.25 1
16 RIKEN 27.5 -206.052 -19.625 2
17 RIKEN 27.5 -206.052 19.625 2
18 RIKEN 27.5 -234.655 0 3
19 RIKEN 27.5  177.45 -39.25 1
20 RIKEN 27.5  177.45 0 1
21 RIKEN 27.5  177.45 39.25 1
22 RIKEN 27.5  206.052 -19.625 2
23 RIKEN 27.5  206.052 19.625 2
24 RIKEN 27.5  234.655 0 3
25 UPC 27.5 -118.3 77.45 3
26 UPC 27.5 -69.7 77.45 1
27 UPC 27.5 -34.85 77.45 1
28 UPC 27.5 0 77.45 1
29 UPC 27.5 34.85 77.45 1
30 UPC 27.5 69.7 77.45 1
31 UPC 27.5 118.3 77.45 3
32 UPC 27.5 -97.2 116.7 3
33 UPC 27.5 -60.362 112.3 2
34 UPC 27.5 -17.425 107.631 2
35 UPC 27.5 17.425 107.631 2
36 UPC 27.5 60.362 112.3 2
37 UPC 27.5 97.2 116.7 3
38 UPC 27.5 -73.928 151.378 3
39 UPC 27.5 -34.85 137.812 3
40 UPC 27.5 0 147.15 3
41 UPC 27.5 34.85 137.812 3
42 UPC 27.5 73.928 151.378 3
43 UPC 27.5 -27.0595 178.438 3
44 UPC 27.5 27.0595 178.438 3
45 UPC 27.5 -118.3 -77.45 3
46 UPC 27.5 -69.7 -77.45 1
47 UPC 27.5 -34.85 -77.45 1
48 UPC 27.5 0 -77.45 1
49 UPC 27.5 34.85 -77.45 1
50 UPC 27.5 69.7 -77.45 1
51 UPC 27.5 118.3 -77.45 3
52 UPC 27.5 -97.2 -116.7 3
53 UPC 27.5 -60.362 -112.3 2
54 UPC 27.5 -17.425 -107.631 2
55 UPC 27.5 17.425 -107.631 2
56 UPC 27.5 60.362 -112.3 2
57 UPC 27.5 97.2 -116.7 3
58 UPC 27.5 -73.928 -151.378 3
59 UPC 27.5 -34.85 -137.812 3
60 UPC 27.5 0 -147.15 3
61 UPC 27.5 34.85 -137.812 3
62 UPC 27.5 73.928 -151.378 3
63 UPC 27.5 -27.0595 -178.438 3
64 UPC 27.5 27.0595 -178.438 3
65 ORNL1 27.5 -215.5 77.45 5
66 ORNL1 27.5 -166.9 77.45 4
67 ORNL1 27.5 166.9 77.45 4
68 ORNL1 27.5 215.5 77.45 5
69 ORNL1 27.5 -301.012 214.133 7
70 ORNL1 27.5 -252.393 235.169 7
71 ORNL1 27.5 252.393 235.169 7
72 ORNL1 27.5 301.012 214.133 7
73 ORNL1 27.5 -215.5 -77.45 5
74 ORNL1 27.5 -166.9 -77.45 4
75 ORNL1 27.5 166.9 -77.45 4
76 ORNL1 27.5 215.5 -77.45 5
77 ORNL1 27.5 -301.012 -214.133 7
78 ORNL1 27.5 -252.393 -235.169 7
79 ORNL1 27.5 252.393 -235.169 7
80 ORNL1 27.5 301.012 -214.133 7
81 ORNL2 53 -139.932 142.007 4
82 ORNL2 53 -70.014 198.718 4
83 ORNL2 53 0 217.478 4
84 ORNL2 53 70.014 198.718 4
85 ORNL2 53 139.932 142.007 4
86 ORNL2 53 -214.903 127.3 5
87 ORNL2 53 -133.044 210.494 5
88 ORNL2 53 -48.6976 259.192 5
89 ORNL2 53 48.6976 259.192 5
90 ORNL2 53 133.044 210.494 5
91 ORNL2 53 214.903 127.3 5
92 ORNL2 53 -273.203 102.2 6
93 ORNL2 53 -263.894 172.91 6
94 ORNL2 53 -204.385 193.709 6
95 ORNL2 53 -118.139 282.073 6
96 ORNL2 53 0 313.728 6
97 ORNL2 53 118.139 282.073 6
98 ORNL2 53 204.385 193.709 6
99 ORNL2 53 263.894 172.91 6
100 ORNL2 53 273.203 102.2 6
101 ORNL2 53 -339.453 102.2 7
102 ORNL2 53 -323.857 159.305 7
103 ORNL2 53 -201.103 278.553 7
104 ORNL2 53 -166.264 365.428 7
105 ORNL2 53 -73.6089 352.162 7
106 ORNL2 53 73.6089 352.162 7
107 ORNL2 53 166.264 365.428 7
108 ORNL2 53 201.103 278.553 7
109 ORNL2 53 323.857 159.305 7
110 ORNL2 53 339.453 102.2 7
111 ORNL2 53 -139.932 -142.007 4
112 ORNL2 53 -70.014 -198.718 4
113 ORNL2 53 0 -217.478 4
114 ORNL2 53 70.014 -198.718 4
115 ORNL2 53 139.932 -142.007 4
116 ORNL2 53 -214.903 -127.3 5
117 ORNL2 53 -133.044 -210.494 5
118 ORNL2 53 -48.6976 -259.192 5
119 ORNL2 53 48.6976 -259.192 5
120 ORNL2 53 133.044 -210.494 5
121 ORNL2 53 214.903 -127.3 5
122 ORNL2 53 -273.203 -102.2 6
123 ORNL2 53 -263.894 -172.91 6
124 ORNL2 53 -204.385 -193.709 6
125 ORNL2 53 -118.139 -282.073 6
126 ORNL2 53 0 -313.728 6
127 ORNL2 53 118.139 -282.073 6
128 ORNL2 53 204.385 -193.709 6
129 ORNL2 53 263.894 -172.91 6
130 ORNL2 53 273.203 -102.2 6
131 ORNL2 53 -339.453 -102.2 7
132 ORNL2 53 -323.857 -159.305 7
133 ORNL2 53 -201.103 -278.553 7
134 ORNL2 53 -166.264 -365.428 7
135 ORNL2 53 -73.6089 -352.162 7
136 ORNL2 53 73.6089 -352.162 7
137 ORNL2 53 166.264 -365.428 7
138 ORNL2 53 201.103 -278.553 7
139 ORNL2 53 323.857 -159.305 7
140 ORNL2 53 339.453 -102.2 7
  Draft   Thu Nov 10 05:05:54 2016 KMHow to convert ridf-file to root-file

1. Login to briken@ribfana03.riken.jp

2. Check if the ridf-file you want to convert is in the directory; /home/briken16/rawdata/bigrips/

3. Login to anaroot; type "anarootlogin"

4. Make your account as your name, and create your directory.

5. login to root; "root -l"

6.  root[ ] .L MakeFullBigRIPSTree_BRIKEN.C+

7.  root[ ]  MakeFullBigRIPSTree_BRIKEN("    full name of ridf-file    ",  Brho34 ,  Brho56 ,"  full name of output file  ")

You can check Brho34 and Brho56 in  --->  http://bripscnt01.rarfadv.riken.jp/runsum/index.php

 Find the link to the summary page in the "file" column. 

 For example: MakeFullBigRIPSTree_BRIKEN("radiioff0371.ridf",  7.176,   6.905, "test.root")

 

 

  148   Wed Nov 9 02:02:22 2016 IrisBoron rubber from India
The boron rubber from India is BR-2871, price US-$ 2700 for 2pc 1m x 2m x 3.3mm.
52% B content, density 1.61 g/cm3
Attachment 1: BPE2_Clr.jpg
BPE2_Clr.jpg
Attachment 2: quotation_220213.pdf
quotation_220213.pdf
Attachment 3: flex_boron_2871.pdf
flex_boron_2871.pdf flex_boron_2871.pdf
  Draft   Wed Nov 9 01:04:35 2016 IrisDrawing of present setup
This is the setup which was used for the Ni runs (from Nov. 8th evening on).

Note (Nov. 10th): Alejandro built a U-shaped Pb wall, the degrader inside AIDA was removed and possibly a Al plate was installed. This has to be checked when access is possible again.


> Attached is the present setup including all walls, auxiliary detectors, degraders etc. and the Takechi setup.
> The lead wall will be removed for measurements (of course...).
> Not to scale! Some sizes and distances included. Pictures see Jose's entry ID 110.
> 
> Note the shape of the active area of the DeltaE Silicon detector, see previous entry.
Attachment 1: Setup-161109-Takechi.pdf
Setup-161109-Takechi.pdf
  146   Wed Nov 9 01:02:53 2016 IrisElog
From Nov. 9th on we use the Takechi ELOG for the run information:
http://ribf-exp.riken.jp/elog/RIBF123/ 
  145   Tue Nov 8 17:00:27 2016 NTB, CG, ATSi Delta E

At least during the timeframe in between ~ 21:30 (11/08) - 23:30 (11/09) (161108_2323_717273Ni.root) we see that the silicon dE have a very low counting rate. ~1Hz when the first AIDA detector sees ~600 Hz and a cumulative ~2kHz. The energy range in the dE stops at ~10MeV.

Edit: It appears the Si dE were removed. Some signals are still in the spectra.

  144   Tue Nov 8 15:10:24 2016 Many717273Ni Run
F7 OUT F11 C-6mm

Start: 00:09
Run: 006
DLT: 161108_2251_717273Ni_006.dlt

Rates:
F11R: 1200 cps
BRIKEN: 270 cps (22.5%)

They  were tuning during this run.

Stop: 0042

Root file: 161109_0042_717273Ni.root
  143   Tue Nov 8 14:28:54 2016 Many717273Ni run
F7 CH2 F11 C-6mm
Total degrader thickness 6mm

Start:
RUN: 005
File: 161108_2251_717273Ni_005.dlt
Stop: 23:59
Run: 005

Rates:
F11R: 2600 cps
BRIKEN: 740 cps

Root file: 161109_0005_717273Ni.root


Counts: 
F11R: 5.36294e+06
BRIKEN: 1.42823e+06
Corr_BR_F11R: 1.41452e+06
  142   Tue Nov 8 13:49:58 2016 Many71,72,73Ni
F7 CH2 F11 Empty

We remove the 8mm Al plate from inside BRIKEN infront of AIDA
Move AIDA to the central position. We put a 5mm Al plate in front
of the degrader.

Degrader 5.4mm + 5mm

Start: 22:51
DLT: 161108_2251_717273Ni_03.dlt

We remove some degrader:2.2mm off
Then we start a new run: 004

Stop:23:26
To put the C-6mm target in F11

ROOT file: 161108_2323_717273Ni.root
  141   Tue Nov 8 12:51:08 2016 Many717273Ni
After removing the lead wall.

Start: 21:45
DLT: 161108_2145_717273Ni_001.dlt

During the first part we were changing the degrader.
Now they remove the C-6mm target.

So we increase the adjustable degrader to 5.4mm 
keeping the 8mm thick plate for implantation.

We stop and start a new DLT file at 22:02
DLT: 161108_2145_717273Ni_002.dlt
Stop: 22:48


NO ROOT FILE!
  140   Tue Nov 8 12:30:33 2016 Tain, Ale (who are not on shift)71,72,73Ni run
71,72,73Ni  run

We started at approximately 21:00, only online, not writing on tape. 

The lead is still in the way. We removed the degrader (fully) and the effect is a 5 % reduction of the neutron flux 
(determined using the rate of the rateF11/rateBRIKEN  before and after the change).
  139   Tue Nov 8 11:51:28 2016 Alespikes on some spectra
Some spectra show spikes or do not look normal. This should be checked.

Look at BRIKEN, Ring4, Ring5, Ring6, Ring7, D4, G7, Clovers, 
Rate1, Rate2, Rate3, etc.

Reset time stamp: 21.00, 8th-nov.

Probably there was a problem with the clock from AIDA related to the LN2 filling.
So to recover, we need to stop acq (only stop acquisition in DACQ control), 
send to hard (send parameters again) and once all the parameters were sent, 
Send Sync pulse.
  138   Tue Nov 8 08:49:51 2016 Tain et alMove ELOG
We will start to use the internal RIKEN ELOG
It is not clear that we can keep the present ELOG also updated
  137   Tue Nov 8 08:31:52 2016 Tain et al424344Ca run
Sequence of settings:
1) No target at F7 and Empty target at F11 (up to t=1E6ms)
2) No target at F7 and C-6mm target at F11 (up to t=5.1E6ms)
3) CH2 (10mm) target at F7 and C-6mm target at F11 (from t=5.3E6ms up to 6.8E6)
4) CH2 (10mm) target at F7 and Empty target at F11 (from t=6.8ms up to crash 7.1ms)

DAQ chash because start of Clover LN2 filling!
Counts accumulated in the the  same time channel at the end.

Start: 16:29 Run: 000
Stop: 18:28 Run: 000

DLT filename: 161108_1629_424344Ca_000.dlt
ROOT filename: 161108_1828_424344Ca.root
  136   Tue Nov 8 06:39:25 2016 Tain. IrisDrawing of present setup

Attached is the present setup including all walls, auxiliary detectors, degraders etc. and the Takechi setup.
The lead wall will be removed for measurements (of course...).
Not to scale! Some sizes and distances included. Pictures see Jose's entry ID 110.

Note the shape of the active area of the DeltaE Silicon detector, see previous entry.
Attachment 1: Full_BRIKEN_Setup-includingTakechi.pdf
Full_BRIKEN_Setup-includingTakechi.pdf
  135   Tue Nov 8 06:13:11 2016 Tain et alNew plastic detector in F11
There is a new plastic scintillator
after the MUSIC chambers

The detector has a central hole of 108mm (with) x 38mm (height)
and is 3mm thick and is placed behind the existing plastic 
scintillator which is 5mm thick.
(see photo)
Attachment 1: PlasticsBehinMUSIC1.jpg
PlasticsBehinMUSIC1.jpg
Attachment 2: PlasticsBehindMUSIC2.jpg
PlasticsBehindMUSIC2.jpg
ELOG V3.1.4-unknown