MUST2 SAMURAI_2018 S3-LEB-LPC SUPERNEMO MUGAST EXPAND SCALP GALATRON HiCARI VELO
  MUGAST, Page 3 of 132  Not logged in MUGAST
New entries since:Thu Jan 1 01:00:00 1970
Status ExpNbr Date Author Type Categorydown Target-Source Subject
Fixede744s Sun Apr 14 23:41:32 2019 Valerian, Simon and BelenOFFLINESoftwareCH2Preliminary results for 2p
Preliminary results using runs 122 : O 1 2 3 4
Attachment 1: Ecm2p.png
Ecm2p.png
Attachment 2: first_proton_second_proton.png
first_proton_second_proton.png
Fixede744s Mon Apr 15 12:15:22 2019 Valerian and SylvainOFFLINESoftwareCH2Kinematic line 2p
Attachment 1: ELabThetaLab_new.png
ELabThetaLab_new.png
Attachment 2: Ecm2p_new.png
Ecm2p_new.png
Fixede744s Mon Apr 15 17:05:24 2019 ValerianOFFLINESoftwareCH2Evolution of deE
Evolution of dEE between run 122 (8e4pps) and 129 (2.5e5pps)
Attachment 1: DeEEvolutionWithIntensity.png
DeEEvolutionWithIntensity.png
Fixede744s Mon Apr 15 17:10:54 2019 ValerianOFFLINESoftwareCH2Evolution of deE
Evolution of dEE between run 122 (8e4pps) and 130 (2.5e5pps)
Attachment 1: DeEEvolutionWithIntensityIC1vsIC2.png
DeEEvolutionWithIntensityIC1vsIC2.png
Fixede744s Tue Apr 16 11:39:40 2019 ValerianOFFLINESoftwareCH2two proton kinematics and center of mass reconstruction with all stat
Attachment 1: All_stat_2p.png
All_stat_2p.png
Fixede744s Tue Apr 16 21:48:31 2019 Valerian, Belen, Sylvain, Iulian, Simon and Blaise-MaelOFFLINESoftwareCH2Preliminary Dalitz plot
Attachment 1: Dalitz_2p.png
Dalitz_2p.png
Attachment 2: Dalitz_zoom2p.png
Dalitz_zoom2p.png
Attachment 3: Dalitz_2pcol.png
Dalitz_2pcol.png
Fixede744s Tue Apr 16 23:38:04 2019 Fairouz JaromirRUNSoftware Script to watch efficiency CATS and VAMOS offline hour by hour
do

lpcgrit

in directory
/home/mugast/analysis/nptool/Projects/MUGAST

root offline/root_vamos/run_xxx.root
.x macros/EffCheck_fhjm.C
Attachment 1: EffCheck_fhjm.C
void chkef( ULong64_t low, ULong64_t high,   ULong64_t n ){
  cout<<endl;
  cout<< "=========================================================\n" ;
  cout<<"i... HOUR: "<<n<<endl; //"     "<<low<<" "<<high<<endl;
  string sep = "----------------------------\n" ;



  TTree *t1 = (TTree*) gROOT->FindObject("AD");

  TH1F * hc = new TH1F("hc","hc",2000,0.1,50);
  TH1F * ht = new TH1F("ht","ht",2000,0.1,50);


  TString cond=  Form("(((RTS<<32)+(VTS<<16)+LTS)>=%lld)&&(((RTS<<32)+(VTS<<16)+LTS)<%lld)",low,high);
  TString condad=Form("&&( (((RTS<<32)+(VTS<<16)+LTS)>=%lld)&&(((RTS<<32)+(VTS<<16)+LTS)<%lld) )",low,high);


  // cout<<cond<<endl<<condad<<endl;



      cout << "Forward (condition by before)" << endl; 
  for(int i =0; i<1;i++)
    {
      t1->Draw("T_FPMW_HF_C:T_FPMW_CATS2_C",cond.Data(),"goff"); 
      long long a=AD->GetSelectedRows();

      t1->Draw("T_FPMW_HF_C:T_FPMW_CATS2_C",Form("T_FPMW_CATS2_C<1 && T_FPMW_HF_C>2 && %s",cond.Data() ),"goff");
      long long b=AD->GetSelectedRows();

	cout << "CATS lost efficiency with resect to VAMOS" << 100.*b/a  << "%" << endl;

    }

  cout << sep ;




      cout << "Forward (condition by before)" << endl; 
  for(int i =0; i<4;i++)
    {
      t1->Draw(Form("IC[%d]>>ht",i+1),cond.Data() ,"goff");
      t1->Draw(Form("IC[%d]>>hc",i+1),Form("IC[%d]>0.1 %s",i,condad.Data() ),"goff");
      cout << "IC " << i << " " << hc->Integral()/ht->Integral()*100. << "%"<< endl;

    }

  cout << sep ;


  cout << "Backward  (condition by after)" << endl; 

  for(int i =0; i<4;i++)
    {
      t1->Draw(Form("IC[%d]>>ht",i),cond.Data() ,"goff");
      t1->Draw(Form("IC[%d]>>hc",i),Form("IC[%d]>0.1 %s",i+1,  condad.Data() ),"goff");
      cout << "IC " << i+1 << " " << hc->Integral()/ht->Integral()*100. << "%"<< endl;

    }
cout << sep ;

 cout << "DC  (condition by IC[0])" << endl; 

  for(int i =0; i<4;i++)
    {
      t1->Draw(Form("IC[0]>>ht"),cond.Data(),"goff");
      t1->Draw(Form("IC[0]>>hc"),Form("EWIRE_%d>100 %s",i, condad.Data() ),"goff");
      cout << "DC WIRE " << i << " " << hc->Integral()/ht->Integral()*100. << "%"<< endl;

    }
cout << sep ;

cout << "DC X  (condition by IC[0])" << endl; 

  for(int i =0; i<4;i++)
    {
      t1->Draw(Form("IC[0]>>ht"),cond.Data(),"goff");
      t1->Draw(Form("IC[0]>>hc"),Form("DC%d_X>-1500  %s",i, condad.Data() ),"goff");
      cout << "DCX" << i << " " << hc->Integral()/ht->Integral()*100. << "%"<< endl;

    }

cout << sep ;


cout << "Xf  (condition by IC[0])" << endl; 

      t1->Draw(Form("IC[0]>>ht"),cond.Data() ,"goff");
      t1->Draw(Form("IC[0]>>hc"),Form("Xf>-1500 %s", condad.Data() ),"goff");
      cout << "Xf " << hc->Integral()/ht->Integral()*100. << "%"<< endl;


cout << sep ;


 delete hc;
 delete ht;
}
//==============================================================end





/*
ORIGINAL NAME but  now the original code for VAMOS eff is above
 */
void EffCheck_fhjm()
{

  ULong64_t hour;
  ULong64_t LTSmin=-1;
  ULong64_t LTSmax=-1;
  ULong64_t LTS,VTS,RTS, tmin,tmax,tmp;
 
  cout<< "============================================================\n" ;
  cout<<"          "<<gFile->GetName()<<endl;
  cout<< "============================================================\n" ;


  cout<<"Looking for min and max time stamp... very slow"<<endl;
  TTree *tree= (TTree*)gDirectory->Get("AD");
  tree->SetBranchAddress("LTS",&LTS);
  tree->SetBranchAddress("VTS",&VTS);
  tree->SetBranchAddress("RTS",&RTS);
  
  
 for (int i=1;i<tree->GetEntries();i++){
   tree->GetEntry(i);
   tmp=(RTS<<32)+(VTS<<16)+LTS;
   if ((LTS>0)&&(tmp>1e+14)){  //================== kill some low values?
     if ((LTSmin>tmp) || (LTSmin==-1)){
       LTSmin=tmp;
     }
     if ((LTSmax<tmp) || (LTSmax==-1)){
       LTSmax=tmp;
     }
   }
 }


 //tree->Draw("(RTS<<32)+(VTS<<16)+LTS>>h(10000)","","");
 //  Long64_t LTSmin=AD->GetV1()[0];
 //  AD->Draw("RTS<<32+VTS<<16+LTS","LTS>0","goff", 1, AD->GetEntries()-1 );
 //  Long64_t LTSmax=AD->GetV1()[0];
 cout<<"min    "<<LTSmin<<" "<<endl;
 cout<<"max    "<<LTSmax<<" "<< endl;
 cout<<"delta  "<<LTSmax-LTSmin<<endl;
 cout<<"delta  "<<(LTSmax-LTSmin)/100/1e+6/3600/282162*4.3<<" hours  EMPIRICAL RUN LENGHT"<<endl;
 hour=143567947269965277/6.0775;
 cout<<"1hour=="<<hour<<endl<<endl<<endl;
 //==========================================================================================
//   MAIN LOOP OVER TIME STEPS
 ULong64_t n=0;
 int hourstep=2;
 for (ULong64_t i=LTSmin; i<LTSmax; i+=hour*hourstep){
   n=n+1;
   chkef( i, i+hour , n*hourstep);
 }

  return NULL;




}
Fixede744s Wed Apr 17 07:04:24 2019 Valerian (Mariluz was the one in charge of AGATA)AGATASoftwareCH2Cristal 4A stopped
Cristal 4A was stopped during the night, see AGATA logbook for more details.
Fixede744s Wed Apr 17 09:15:28 2019 Valerian, IulianMUST2SoftwareN/AHV off end of exp e744
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
	 **** HVVAMOS connected to crate at IP : 172.16.137.110	****
	 **** HVVAMOS loading crate map: found 16 slots 	****
 **** MUST2 crate: 
+10v/mg      Slot: 5   (A1516B  ) Channel:5   Vmon:   9.99 V   Imon:  0.405 A  Status: On
+10v/t14mg   Slot: 2   (A1516   ) Channel:5   Vmon:   9.96 V   Imon:  0.474 A  Status: On
+2.5V/MG10   Slot: 1   (A1518B  ) Channel:2   Vmon:    2.5 V   Imon:  1.228 A  Status: On
+2.5v/MG9    Slot: 1   (A1518B  ) Channel:1   Vmon:   2.49 V   Imon:  0.012 A  Status: On
+2.5v/mg1    Slot: 4   (A1518B  ) Channel:2   Vmon:    2.5 V   Imon:  1.277 A  Status: On
+2.5v/mg11   Slot: 3   (A1518B  ) Channel:2   Vmon:   2.49 V   Imon:  1.213 A  Status: On
+2.5v/mg3    Slot: 3   (A1518B  ) Channel:0   Vmon:   2.49 V   Imon:  1.246 A  Status: On
+2.5v/mg4    Slot: 4   (A1518B  ) Channel:1   Vmon:   2.49 V   Imon:  1.245 A  Status: On
+2.5v/mg5    Slot: 3   (A1518B  ) Channel:1   Vmon:   2.49 V   Imon:   1.27 A  Status: On
+2.5v/mg7    Slot: 4   (A1518B  ) Channel:0   Vmon:   2.49 V   Imon:  1.281 A  Status: On
+2.5v/t1     Slot: 0   (A1518B  ) Channel:0   Vmon:   2.49 V   Imon:  1.224 A  Status: On
+2.5v/t2     Slot: 0   (A1518B  ) Channel:1   Vmon:   2.49 V   Imon:   1.22 A  Status: On
+2.5v/t3     Slot: 0   (A1518B  ) Channel:2   Vmon:   2.49 V   Imon:  1.208 A  Status: On
+2.5v/t4     Slot: 1   (A1518B  ) Channel:0   Vmon:   2.49 V   Imon:   1.23 A  Status: On
+3.3v/mg     Slot: 5   (A1516B  ) Channel:2   Vmon:   3.29 V   Imon:  0.994 A  Status: On
+3.3v/t14mg  Slot: 2   (A1516   ) Channel:2   Vmon:   3.31 V   Imon:  0.814 A  Status: On
+5v/mg3511   Slot: 5   (A1516B  ) Channel:3   Vmon:      5 V   Imon:  0.578 A  Status: On
+5v/mg741    Slot: 5   (A1516B  ) Channel:4   Vmon:      5 V   Imon:  0.563 A  Status: On
+5v/t123     Slot: 2   (A1516   ) Channel:3   Vmon:   5.03 V   Imon:  0.641 A  Status: On
+5v/t4mg     Slot: 2   (A1516   ) Channel:4   Vmon:   4.96 V   Imon:  0.441 A  Status: On
-2.5V/MG10   Slot: 1   (A1518B  ) Channel:5   Vmon:   2.49 V   Imon:  1.817 A  Status: On
-2.5V/MG9    Slot: 1   (A1518B  ) Channel:4   Vmon:    2.5 V   Imon:      0 A  Status: On
-2.5v/mg1    Slot: 4   (A1518B  ) Channel:5   Vmon:   2.49 V   Imon:  1.801 A  Status: On
-2.5v/mg11   Slot: 3   (A1518B  ) Channel:5   Vmon:   2.48 V   Imon:  1.797 A  Status: On
-2.5v/mg3    Slot: 3   (A1518B  ) Channel:3   Vmon:   2.49 V   Imon:  1.781 A  Status: On
-2.5v/mg4    Slot: 4   (A1518B  ) Channel:4   Vmon:   2.49 V   Imon:  1.785 A  Status: On
-2.5v/mg5    Slot: 3   (A1518B  ) Channel:4   Vmon:   2.49 V   Imon:  1.815 A  Status: On
-2.5v/mg7    Slot: 4   (A1518B  ) Channel:3   Vmon:    2.5 V   Imon:  1.811 A  Status: On
-2.5v/t1     Slot: 0   (A1518B  ) Channel:3   Vmon:   2.49 V   Imon:  1.795 A  Status: On
-2.5v/t2     Slot: 0   (A1518B  ) Channel:4   Vmon:   2.49 V   Imon:  1.801 A  Status: On
-2.5v/t3     Slot: 0   (A1518B  ) Channel:5   Vmon:   2.49 V   Imon:  1.809 A  Status: On
-2.5v/t4     Slot: 1   (A1518B  ) Channel:3   Vmon:   2.51 V   Imon:  1.833 A  Status: On
-5v/mg3511   Slot: 5   (A1516B  ) Channel:0   Vmon:   4.99 V   Imon:  0.367 A  Status: On
-5v/mg741    Slot: 5   (A1516B  ) Channel:1   Vmon:      5 V   Imon:   0.35 A  Status: On
-5v/t123     Slot: 2   (A1516   ) Channel:0   Vmon:      5 V   Imon:  0.433 A  Status: On
-5v/t4mg     Slot: 2   (A1516   ) Channel:1   Vmon:   4.98 V   Imon:  0.282 A  Status: On
88888        Slot: 13  (A1835   ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
CHIO         Slot: 15  (AG535D  ) Channel:11  Vmon:    0.5 V   Imon:      0 uA Status: Off
CsI/t1       Slot: 11  (A1837   ) Channel:0   Vmon:  50.02 V   Imon:      0 uA Status: On
CsI/t2       Slot: 11  (A1837   ) Channel:2   Vmon:  50.04 V   Imon:   0.01 uA Status: On
CsI/t3       Slot: 11  (A1837   ) Channel:4   Vmon:  50.04 V   Imon:      0 uA Status: On
CsI/t4       Slot: 11  (A1837   ) Channel:6   Vmon:     50 V   Imon:      0 uA Status: On
CsI/t5       Slot: 12  (A1837   ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
CsI/t6       Slot: 12  (A1837   ) Channel:2   Vmon:      0 V   Imon:      0 uA Status: Off
CsI/t7       Slot: 12  (A1837   ) Channel:4   Vmon:   0.02 V   Imon:      0 uA Status: Off
CsI/t8       Slot: 12  (A1837   ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
DE_CHARISSA  Slot: 13  (A1835   ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
DSSD/t1      Slot: 11  (A1837   ) Channel:1   Vmon:  70.04 V   Imon:   1.63 uA Status: On
DSSD/t2      Slot: 11  (A1837   ) Channel:3   Vmon:  70.02 V   Imon:   2.34 uA Status: On
DSSD/t3      Slot: 11  (A1837   ) Channel:5   Vmon:  70.02 V   Imon:   3.97 uA Status: On
DSSD/t4      Slot: 11  (A1837   ) Channel:7   Vmon:   69.6 V   Imon:   1.05 uA Status: On
EXL1         Slot: 15  (AG535D  ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
EXL2         Slot: 15  (AG535D  ) Channel:1   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL3         Slot: 15  (AG535D  ) Channel:2   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL4         Slot: 15  (AG535D  ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
EXL5         Slot: 15  (AG535D  ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
EXL6         Slot: 15  (AG535D  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
EXL7         Slot: 15  (AG535D  ) Channel:6   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL8         Slot: 15  (AG535D  ) Channel:7   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL9         Slot: 15  (AG535D  ) Channel:8   Vmon:    0.5 V   Imon:      0 uA Status: Off
E_CHARISSA   Slot: 13  (A1835   ) Channel:11  Vmon:      0 V   Imon:      0 uA Status: Off
MG10C        Slot: 11  (A1837   ) Channel:11  Vmon: 140.04 V   Imon:   0.35 uA Status: On
MG11A        Slot: 12  (A1837   ) Channel:5   Vmon:   59.9 V   Imon:    0.4 uA Status: On
MG1T         Slot: 12  (A1837   ) Channel:11  Vmon: 139.82 V   Imon:      1 uA Status: On
MG3T         Slot: 12  (A1837   ) Channel:1   Vmon: 159.92 V   Imon:    0.6 uA Status: On
MG4T         Slot: 12  (A1837   ) Channel:9   Vmon:  95.08 V   Imon:      1 uA Status: On
MG5T         Slot: 12  (A1837   ) Channel:3   Vmon:  149.9 V   Imon:      1 uA Status: On
MG7T         Slot: 12  (A1837   ) Channel:7   Vmon: 119.94 V   Imon:    1.4 uA Status: On
MG9C         Slot: 11  (A1837   ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: On
Sili1/t7     Slot: 13  (A1835   ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
Sili1/t8     Slot: 13  (A1835   ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
Sili2/t8     Slot: 13  (A1835   ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
cats1        Slot: 13  (A1835   ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
cats2        Slot: 13  (A1835   ) Channel:1   Vmon:  540.2 V   Imon:      0 uA Status: On
spare1       Slot: 11  (A1837   ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
spare2       Slot: 11  (A1837   ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
spare3       Slot: 12  (A1837   ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
spare4       Slot: 12  (A1837   ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
spare5       Slot: 13  (A1835   ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
spare6       Slot: 13  (A1835   ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
spare7       Slot: 13  (A1835   ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
spare8       Slot: 15  (AG535D  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
spare9       Slot: 15  (AG535D  ) Channel:10  Vmon:    0.5 V   Imon:      0 uA Status: Off
 Front panel value: 38666336
 **** VAMOS crate: 
             Slot: 8   (A1821H  ) Channel:1   Vmon:      0 V   Imon:      0 uA Status: Off
CHAN8        Slot: 7   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL00    Slot: 10  (AG5262  ) Channel:0   Vmon:      9 V   Imon:   0.03 uA Status: Off
CHANNEL01    Slot: 10  (AG5262  ) Channel:1   Vmon:      7 V   Imon:   0.03 uA Status: Off
CHANNEL02    Slot: 9   (A1821H  ) Channel:2   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL03    Slot: 9   (A1821H  ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL04    Slot: 9   (A1821H  ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL05    Slot: 9   (A1821H  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL06    Slot: 9   (A1821H  ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL07    Slot: 9   (A1821H  ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL08    Slot: 9   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL09    Slot: 9   (A1821H  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL10    Slot: 9   (A1821H  ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL11    Slot: 9   (A1821H  ) Channel:11  Vmon:      0 V   Imon:      0 uA Status: Off
FP_CATS0     Slot: 2   (A1821HMP) Channel:6   Vmon:    0.5 V   Imon:  0.003 uA Status: INTERNAL TRIP
FP_CATS1     Slot: 2   (A1821HMP) Channel:7   Vmon:      0 V   Imon:      0 uA Status: INTERNAL TRIP
FP_CATS2     Slot: 2   (A1821HMP) Channel:8   Vmon:      0 V   Imon:      0 uA Status: INTERNAL TRIP
FP_CATS3     Slot: 2   (A1821HMP) Channel:9   Vmon:      0 V   Imon:      0 uA Status: INTERNAL TRIP
FP_CATS4     Slot: 2   (A1821HMP) Channel:10  Vmon:      0 V   Imon:   0.06 uA Status: INTERNAL TRIP
FP_CATS5     Slot: 2   (A1821HMP) Channel:11  Vmon:      0 V   Imon:   0.02 uA Status: INTERNAL TRIP
FP_DC1_cat   Slot: 3   (A1821HM ) Channel:0   Vmon:  499.5 V   Imon:  30.24 uA Status: On
FP_DC1_w1    Slot: 2   (A1821HMP) Channel:0   Vmon:  674.5 V   Imon:      0 uA Status: On
FP_DC1_w2    Slot: 2   (A1821HMP) Channel:1   Vmon:  674.5 V   Imon:      0 uA Status: On
FP_DC2_cat   Slot: 3   (A1821HM ) Channel:1   Vmon:  499.5 V   Imon:   30.2 uA Status: On
FP_DC2_w1    Slot: 2   (A1821HMP) Channel:2   Vmon:    675 V   Imon:      0 uA Status: On
FP_DC2_w2    Slot: 2   (A1821HMP) Channel:3   Vmon: 579.75 V   Imon:  0.002 uA Status: On
FP_IC_Casq   Slot: 3   (A1821HM ) Channel:11  Vmon:    999 V   Imon:      0 uA Status: On
FP_IC_Cath   Slot: 3   (A1821HM ) Channel:10  Vmon:   1229 V   Imon:   24.6 uA Status: On
FP_IC_pad    Slot: 2   (A1821HMP) Channel:5   Vmon: 494.75 V   Imon:      0 uA Status: On
FP_IC_w      Slot: 2   (A1821HMP) Channel:4   Vmon: 164.75 V   Imon:      0 uA Status: On
FP_PosMW0    Slot: 1   (A1821H  ) Channel:0   Vmon:      0 V   Imon:  0.003 uA Status: Off
FP_PosMW1    Slot: 1   (A1821H  ) Channel:1   Vmon:      0 V   Imon:      0 uA Status: Off
FP_PosMW2    Slot: 1   (A1821H  ) Channel:2   Vmon:      0 V   Imon:  0.001 uA Status: Off
FP_PosMW3    Slot: 1   (A1821H  ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
FP_PosMW4    Slot: 1   (A1821H  ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
FP_PosMW5    Slot: 1   (A1821H  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
FP_plastic   Slot: 5   (A18332  ) Channel:0   Vmon:    850 V   Imon:  263.8 uA Status: On
MWPC_2arm    Slot: 0   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
Si1          Slot: 8   (A1821H  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
Si2          Slot: 8   (A1821H  ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
Si3          Slot: 8   (A1821H  ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
Si4          Slot: 8   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
Si5          Slot: 8   (A1821H  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
Si6          Slot: 8   (A1821H  ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
Si7          Slot: 8   (A1821H  ) Channel:11  Vmon:      0 V   Imon:      0 uA Status: Off
TP_DC1       Slot: 3   (A1821HM ) Channel:6   Vmon:    0.5 V   Imon:   0.02 uA Status: Off
TP_DC2       Slot: 3   (A1821HM ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
TP_MW0       Slot: 0   (A1821H  ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
TP_MW1       Slot: 0   (A1821H  ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
TP_cath1     Slot: 3   (A1821HM ) Channel:2   Vmon:    0.5 V   Imon:   0.02 uA Status: Off
TP_cath2     Slot: 3   (A1821HM ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
chan9        Slot: 7   (A1821H  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
x            Slot: 6   (A1821H  ) Channel:2   Vmon:      0 V   Imon:      0 uA Status: Off
 Front panel value: 38666272
lpcgrit:~ $ hvm_group HV-CATS off
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
 *** Waiting for voltage to adjust...
cats1        Slot: 13  (A1835   ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
cats2        Slot: 13  (A1835   ) Channel:1   Vmon:  125.3 V   Imon:      0 uA Status: Off
lpcgrit:~ $ 
lpcgrit:~ $ 
lpcgrit:~ $ hvm_group HV-Si off
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
 *** Waiting for voltage to adjust...
DSSD/t1      Slot: 11  (A1837   ) Channel:1   Vmon:  22.54 V   Imon:      0 uA Status: Off
DSSD/t2      Slot: 11  (A1837   ) Channel:3   Vmon:  20.84 V   Imon:      0 uA Status: Off
DSSD/t3      Slot: 11  (A1837   ) Channel:5   Vmon:  25.24 V   Imon:      0 uA Status: Off
DSSD/t4      Slot: 11  (A1837   ) Channel:7   Vmon:  28.06 V   Imon:      0 uA Status: Off
MG9C         Slot: 11  (A1837   ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
MG10C        Slot: 11  (A1837   ) Channel:11  Vmon:   58.7 V   Imon:      0 uA Status: Off
MG3T         Slot: 12  (A1837   ) Channel:1   Vmon:  54.62 V   Imon:      0 uA Status: Off
MG5T         Slot: 12  (A1837   ) Channel:3   Vmon:   51.5 V   Imon:      0 uA Status: Off
MG11A        Slot: 12  (A1837   ) Channel:5   Vmon:  33.24 V   Imon:      0 uA Status: Off
MG7T         Slot: 12  (A1837   ) Channel:7   Vmon:  43.54 V   Imon:      0 uA Status: Off
MG4T         Slot: 12  (A1837   ) Channel:9   Vmon:  37.36 V   Imon:      0 uA Status: Off
MG1T         Slot: 12  (A1837   ) Channel:11  Vmon:  48.08 V   Imon:      0 uA Status: Off
lpcgrit:~ $ 
lpcgrit:~ $ hvm_group HV-CsI off
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
 *** Waiting for voltage to adjust...
CsI/t1       Slot: 11  (A1837   ) Channel:0   Vmon:   15.3 V   Imon:      0 uA Status: Off
CsI/t2       Slot: 11  (A1837   ) Channel:2   Vmon:  16.82 V   Imon:      0 uA Status: Off
CsI/t3       Slot: 11  (A1837   ) Channel:4   Vmon:  17.98 V   Imon:      0 uA Status: Off
CsI/t4       Slot: 11  (A1837   ) Channel:6   Vmon:  15.46 V   Imon:      0 uA Status: Off
lpcgrit:~ $ 
lpcgrit:~ $ 
lpcgrit:~ $ hvm_group BTMG-A off
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
 *** Waiting for voltage to adjust...
+2.5v/t1     Slot: 0   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.006 A  Status: Off
+2.5v/t2     Slot: 0   (A1518B  ) Channel:1   Vmon:      0 V   Imon:  0.004 A  Status: Off
+2.5v/t3     Slot: 0   (A1518B  ) Channel:2   Vmon:   0.12 V   Imon:      0 A  Status: Off
-2.5v/t1     Slot: 0   (A1518B  ) Channel:3   Vmon:      0 V   Imon:      0 A  Status: Off
-2.5v/t2     Slot: 0   (A1518B  ) Channel:4   Vmon:      0 V   Imon:      0 A  Status: Off
-2.5v/t3     Slot: 0   (A1518B  ) Channel:5   Vmon:      0 V   Imon:  0.005 A  Status: Off
+2.5v/t4     Slot: 1   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.009 A  Status: Off
+2.5v/MG9    Slot: 1   (A1518B  ) Channel:1   Vmon:      0 V   Imon:  0.012 A  Status: Off
+2.5V/MG10   Slot: 1   (A1518B  ) Channel:2   Vmon:      0 V   Imon:  0.016 A  Status: Off
-2.5v/t4     Slot: 1   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.004 A  Status: Off
-2.5V/MG9    Slot: 1   (A1518B  ) Channel:4   Vmon:      0 V   Imon:      0 A  Status: Off
-2.5V/MG10   Slot: 1   (A1518B  ) Channel:5   Vmon:      0 V   Imon:  0.004 A  Status: Off
-5v/t123     Slot: 2   (A1516   ) Channel:0   Vmon:      0 V   Imon:  0.002 A  Status: Off
-5v/t4mg     Slot: 2   (A1516   ) Channel:1   Vmon:      0 V   Imon:      0 A  Status: Off
+3.3v/t14mg  Slot: 2   (A1516   ) Channel:2   Vmon:   0.03 V   Imon:      0 A  Status: Off
+5v/t123     Slot: 2   (A1516   ) Channel:3   Vmon:   0.02 V   Imon:      0 A  Status: Off
+5v/t4mg     Slot: 2   (A1516   ) Channel:4   Vmon:      0 V   Imon:  0.001 A  Status: Off
+10v/t14mg   Slot: 2   (A1516   ) Channel:5   Vmon:      0 V   Imon:  0.001 A  Status: Off
lpcgrit:~ $ 
lpcgrit:~ $ hvm_group BTMG-B off
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
 *** Waiting for voltage to adjust...
+2.5v/mg3    Slot: 3   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.008 A  Status: Off
+2.5v/mg5    Slot: 3   (A1518B  ) Channel:1   Vmon:      0 V   Imon:      0 A  Status: Off
+2.5v/mg11   Slot: 3   (A1518B  ) Channel:2   Vmon:      0 V   Imon:  0.003 A  Status: Off
-2.5v/mg3    Slot: 3   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.003 A  Status: Off
-2.5v/mg5    Slot: 3   (A1518B  ) Channel:4   Vmon:      0 V   Imon:  0.001 A  Status: Off
-2.5v/mg11   Slot: 3   (A1518B  ) Channel:5   Vmon:   0.06 V   Imon:      0 A  Status: Off
+2.5v/mg7    Slot: 4   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.006 A  Status: Off
+2.5v/mg4    Slot: 4   (A1518B  ) Channel:1   Vmon:      0 V   Imon:  0.003 A  Status: Off
+2.5v/mg1    Slot: 4   (A1518B  ) Channel:2   Vmon:      0 V   Imon:  0.006 A  Status: Off
-2.5v/mg7    Slot: 4   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.002 A  Status: Off
-2.5v/mg4    Slot: 4   (A1518B  ) Channel:4   Vmon:      0 V   Imon:  0.002 A  Status: Off
-2.5v/mg1    Slot: 4   (A1518B  ) Channel:5   Vmon:      0 V   Imon:  0.001 A  Status: Off
-5v/mg3511   Slot: 5   (A1516B  ) Channel:0   Vmon:   0.01 V   Imon:      0 A  Status: Off
-5v/mg741    Slot: 5   (A1516B  ) Channel:1   Vmon:   0.01 V   Imon:      0 A  Status: Off
+3.3v/mg     Slot: 5   (A1516B  ) Channel:2   Vmon:   0.04 V   Imon:      0 A  Status: Off
+5v/mg3511   Slot: 5   (A1516B  ) Channel:3   Vmon:   0.02 V   Imon:      0 A  Status: Off
+5v/mg741    Slot: 5   (A1516B  ) Channel:4   Vmon:   0.01 V   Imon:      0 A  Status: Off
+10v/mg      Slot: 5   (A1516B  ) Channel:5   Vmon:   0.01 V   Imon:      0 A  Status: Off
lpcgrit:~ $ hvm_print 
	 **** HVMUST2 connected to crate at IP : 172.16.139.10	****
	 **** HVMUST2 loading crate map: found 16 slots 	****
	 **** HVVAMOS connected to crate at IP : 172.16.137.110	****
	 **** HVVAMOS loading crate map: found 16 slots 	****
 **** MUST2 crate: 
+10v/mg      Slot: 5   (A1516B  ) Channel:5   Vmon:      0 V   Imon:      0 A  Status: Off
+10v/t14mg   Slot: 2   (A1516   ) Channel:5   Vmon:      0 V   Imon:      0 A  Status: Off
+2.5V/MG10   Slot: 1   (A1518B  ) Channel:2   Vmon:      0 V   Imon:  0.016 A  Status: Off
+2.5v/MG9    Slot: 1   (A1518B  ) Channel:1   Vmon:      0 V   Imon:  0.011 A  Status: Off
+2.5v/mg1    Slot: 4   (A1518B  ) Channel:2   Vmon:      0 V   Imon:  0.006 A  Status: Off
+2.5v/mg11   Slot: 3   (A1518B  ) Channel:2   Vmon:      0 V   Imon:  0.003 A  Status: Off
+2.5v/mg3    Slot: 3   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.009 A  Status: Off
+2.5v/mg4    Slot: 4   (A1518B  ) Channel:1   Vmon:      0 V   Imon:  0.003 A  Status: Off
+2.5v/mg5    Slot: 3   (A1518B  ) Channel:1   Vmon:      0 V   Imon:      0 A  Status: Off
+2.5v/mg7    Slot: 4   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.007 A  Status: Off
+2.5v/t1     Slot: 0   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.006 A  Status: Off
+2.5v/t2     Slot: 0   (A1518B  ) Channel:1   Vmon:      0 V   Imon:  0.006 A  Status: Off
+2.5v/t3     Slot: 0   (A1518B  ) Channel:2   Vmon:      0 V   Imon:      0 A  Status: Off
+2.5v/t4     Slot: 1   (A1518B  ) Channel:0   Vmon:      0 V   Imon:  0.012 A  Status: Off
+3.3v/mg     Slot: 5   (A1516B  ) Channel:2   Vmon:   0.04 V   Imon:      0 A  Status: Off
+3.3v/t14mg  Slot: 2   (A1516   ) Channel:2   Vmon:   0.02 V   Imon:      0 A  Status: Off
+5v/mg3511   Slot: 5   (A1516B  ) Channel:3   Vmon:   0.02 V   Imon:      0 A  Status: Off
+5v/mg741    Slot: 5   (A1516B  ) Channel:4   Vmon:   0.01 V   Imon:      0 A  Status: Off
+5v/t123     Slot: 2   (A1516   ) Channel:3   Vmon:   0.02 V   Imon:  0.001 A  Status: Off
+5v/t4mg     Slot: 2   (A1516   ) Channel:4   Vmon:      0 V   Imon:  0.001 A  Status: Off
-2.5V/MG10   Slot: 1   (A1518B  ) Channel:5   Vmon:      0 V   Imon:  0.005 A  Status: Off
-2.5V/MG9    Slot: 1   (A1518B  ) Channel:4   Vmon:      0 V   Imon:  0.001 A  Status: Off
-2.5v/mg1    Slot: 4   (A1518B  ) Channel:5   Vmon:      0 V   Imon:  0.001 A  Status: Off
-2.5v/mg11   Slot: 3   (A1518B  ) Channel:5   Vmon:   0.06 V   Imon:      0 A  Status: Off
-2.5v/mg3    Slot: 3   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.004 A  Status: Off
-2.5v/mg4    Slot: 4   (A1518B  ) Channel:4   Vmon:      0 V   Imon:  0.002 A  Status: Off
-2.5v/mg5    Slot: 3   (A1518B  ) Channel:4   Vmon:      0 V   Imon:  0.004 A  Status: Off
-2.5v/mg7    Slot: 4   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.002 A  Status: Off
-2.5v/t1     Slot: 0   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.001 A  Status: Off
-2.5v/t2     Slot: 0   (A1518B  ) Channel:4   Vmon:      0 V   Imon:      0 A  Status: Off
-2.5v/t3     Slot: 0   (A1518B  ) Channel:5   Vmon:      0 V   Imon:  0.008 A  Status: Off
-2.5v/t4     Slot: 1   (A1518B  ) Channel:3   Vmon:      0 V   Imon:  0.006 A  Status: Off
-5v/mg3511   Slot: 5   (A1516B  ) Channel:0   Vmon:   0.01 V   Imon:      0 A  Status: Off
-5v/mg741    Slot: 5   (A1516B  ) Channel:1   Vmon:   0.01 V   Imon:      0 A  Status: Off
-5v/t123     Slot: 2   (A1516   ) Channel:0   Vmon:      0 V   Imon:  0.002 A  Status: Off
-5v/t4mg     Slot: 2   (A1516   ) Channel:1   Vmon:   0.01 V   Imon:      0 A  Status: Off
88888        Slot: 13  (A1835   ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
CHIO         Slot: 15  (AG535D  ) Channel:11  Vmon:    0.5 V   Imon:      0 uA Status: Off
CsI/t1       Slot: 11  (A1837   ) Channel:0   Vmon:    0.1 V   Imon:      0 uA Status: Off
CsI/t2       Slot: 11  (A1837   ) Channel:2   Vmon:   0.06 V   Imon:      0 uA Status: Off
CsI/t3       Slot: 11  (A1837   ) Channel:4   Vmon:    0.1 V   Imon:      0 uA Status: Off
CsI/t4       Slot: 11  (A1837   ) Channel:6   Vmon:   0.06 V   Imon:      0 uA Status: Off
CsI/t5       Slot: 12  (A1837   ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
CsI/t6       Slot: 12  (A1837   ) Channel:2   Vmon:      0 V   Imon:      0 uA Status: Off
CsI/t7       Slot: 12  (A1837   ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
CsI/t8       Slot: 12  (A1837   ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
DE_CHARISSA  Slot: 13  (A1835   ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
DSSD/t1      Slot: 11  (A1837   ) Channel:1   Vmon:   0.02 V   Imon:      0 uA Status: Off
DSSD/t2      Slot: 11  (A1837   ) Channel:3   Vmon:   0.22 V   Imon:      0 uA Status: Off
DSSD/t3      Slot: 11  (A1837   ) Channel:5   Vmon:   0.44 V   Imon:      0 uA Status: Off
DSSD/t4      Slot: 11  (A1837   ) Channel:7   Vmon:   1.02 V   Imon:      0 uA Status: Off
EXL1         Slot: 15  (AG535D  ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
EXL2         Slot: 15  (AG535D  ) Channel:1   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL3         Slot: 15  (AG535D  ) Channel:2   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL4         Slot: 15  (AG535D  ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
EXL5         Slot: 15  (AG535D  ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
EXL6         Slot: 15  (AG535D  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
EXL7         Slot: 15  (AG535D  ) Channel:6   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL8         Slot: 15  (AG535D  ) Channel:7   Vmon:    0.5 V   Imon:      0 uA Status: Off
EXL9         Slot: 15  (AG535D  ) Channel:8   Vmon:    0.5 V   Imon:      0 uA Status: Off
E_CHARISSA   Slot: 13  (A1835   ) Channel:11  Vmon:      0 V   Imon:      0 uA Status: Off
MG10C        Slot: 11  (A1837   ) Channel:11  Vmon:   8.68 V   Imon:      0 uA Status: Off
MG11A        Slot: 12  (A1837   ) Channel:5   Vmon:   3.08 V   Imon:      0 uA Status: Off
MG1T         Slot: 12  (A1837   ) Channel:11  Vmon:   6.04 V   Imon:      0 uA Status: Off
MG3T         Slot: 12  (A1837   ) Channel:1   Vmon:   7.96 V   Imon:      0 uA Status: Off
MG4T         Slot: 12  (A1837   ) Channel:9   Vmon:   4.96 V   Imon:      0 uA Status: Off
MG5T         Slot: 12  (A1837   ) Channel:3   Vmon:   7.42 V   Imon:      0 uA Status: Off
MG7T         Slot: 12  (A1837   ) Channel:7   Vmon:   5.64 V   Imon:      0 uA Status: Off
MG9C         Slot: 11  (A1837   ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
Sili1/t7     Slot: 13  (A1835   ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
Sili1/t8     Slot: 13  (A1835   ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
Sili2/t8     Slot: 13  (A1835   ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
cats1        Slot: 13  (A1835   ) Channel:0   Vmon:      0 V   Imon:      0 uA Status: Off
cats2        Slot: 13  (A1835   ) Channel:1   Vmon:    0.1 V   Imon:      0 uA Status: Off
spare1       Slot: 11  (A1837   ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
spare2       Slot: 11  (A1837   ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
spare3       Slot: 12  (A1837   ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
spare4       Slot: 12  (A1837   ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
spare5       Slot: 13  (A1835   ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
spare6       Slot: 13  (A1835   ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
spare7       Slot: 13  (A1835   ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
spare8       Slot: 15  (AG535D  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
spare9       Slot: 15  (AG535D  ) Channel:10  Vmon:    0.5 V   Imon:      0 uA Status: Off
 Front panel value: 32637024
 **** VAMOS crate: 
             Slot: 8   (A1821H  ) Channel:1   Vmon:      0 V   Imon:      0 uA Status: Off
CHAN8        Slot: 7   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL00    Slot: 10  (AG5262  ) Channel:0   Vmon:      9 V   Imon:   0.03 uA Status: Off
CHANNEL01    Slot: 10  (AG5262  ) Channel:1   Vmon:      7 V   Imon:   0.03 uA Status: Off
CHANNEL02    Slot: 9   (A1821H  ) Channel:2   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL03    Slot: 9   (A1821H  ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL04    Slot: 9   (A1821H  ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL05    Slot: 9   (A1821H  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL06    Slot: 9   (A1821H  ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL07    Slot: 9   (A1821H  ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL08    Slot: 9   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL09    Slot: 9   (A1821H  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL10    Slot: 9   (A1821H  ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
CHANNEL11    Slot: 9   (A1821H  ) Channel:11  Vmon:      0 V   Imon:      0 uA Status: Off
FP_CATS0     Slot: 2   (A1821HMP) Channel:6   Vmon:    0.5 V   Imon:  0.003 uA Status: INTERNAL TRIP
FP_CATS1     Slot: 2   (A1821HMP) Channel:7   Vmon:      0 V   Imon:      0 uA Status: INTERNAL TRIP
FP_CATS2     Slot: 2   (A1821HMP) Channel:8   Vmon:      0 V   Imon:      0 uA Status: INTERNAL TRIP
FP_CATS3     Slot: 2   (A1821HMP) Channel:9   Vmon:      0 V   Imon:      0 uA Status: INTERNAL TRIP
FP_CATS4     Slot: 2   (A1821HMP) Channel:10  Vmon:      0 V   Imon:   0.06 uA Status: INTERNAL TRIP
FP_CATS5     Slot: 2   (A1821HMP) Channel:11  Vmon:      0 V   Imon:   0.02 uA Status: INTERNAL TRIP
FP_DC1_cat   Slot: 3   (A1821HM ) Channel:0   Vmon:  499.5 V   Imon:  30.24 uA Status: On
FP_DC1_w1    Slot: 2   (A1821HMP) Channel:0   Vmon:  674.5 V   Imon:      0 uA Status: On
FP_DC1_w2    Slot: 2   (A1821HMP) Channel:1   Vmon:  674.5 V   Imon:      0 uA Status: On
FP_DC2_cat   Slot: 3   (A1821HM ) Channel:1   Vmon:  499.5 V   Imon:   30.2 uA Status: On
FP_DC2_w1    Slot: 2   (A1821HMP) Channel:2   Vmon:    675 V   Imon:      0 uA Status: On
FP_DC2_w2    Slot: 2   (A1821HMP) Channel:3   Vmon: 579.75 V   Imon:  0.002 uA Status: On
FP_IC_Casq   Slot: 3   (A1821HM ) Channel:11  Vmon:    999 V   Imon:      0 uA Status: On
FP_IC_Cath   Slot: 3   (A1821HM ) Channel:10  Vmon:   1229 V   Imon:   24.6 uA Status: On
FP_IC_pad    Slot: 2   (A1821HMP) Channel:5   Vmon: 494.75 V   Imon:      0 uA Status: On
FP_IC_w      Slot: 2   (A1821HMP) Channel:4   Vmon: 164.75 V   Imon:      0 uA Status: On
FP_PosMW0    Slot: 1   (A1821H  ) Channel:0   Vmon:      0 V   Imon:  0.003 uA Status: Off
FP_PosMW1    Slot: 1   (A1821H  ) Channel:1   Vmon:      0 V   Imon:      0 uA Status: Off
FP_PosMW2    Slot: 1   (A1821H  ) Channel:2   Vmon:      0 V   Imon:  0.001 uA Status: Off
FP_PosMW3    Slot: 1   (A1821H  ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
FP_PosMW4    Slot: 1   (A1821H  ) Channel:4   Vmon:      0 V   Imon:      0 uA Status: Off
FP_PosMW5    Slot: 1   (A1821H  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
FP_plastic   Slot: 5   (A18332  ) Channel:0   Vmon:    850 V   Imon:  263.8 uA Status: On
MWPC_2arm    Slot: 0   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
Si1          Slot: 8   (A1821H  ) Channel:5   Vmon:      0 V   Imon:      0 uA Status: Off
Si2          Slot: 8   (A1821H  ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
Si3          Slot: 8   (A1821H  ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
Si4          Slot: 8   (A1821H  ) Channel:8   Vmon:      0 V   Imon:      0 uA Status: Off
Si5          Slot: 8   (A1821H  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
Si6          Slot: 8   (A1821H  ) Channel:10  Vmon:      0 V   Imon:      0 uA Status: Off
Si7          Slot: 8   (A1821H  ) Channel:11  Vmon:      0 V   Imon:      0 uA Status: Off
TP_DC1       Slot: 3   (A1821HM ) Channel:6   Vmon:    0.5 V   Imon:   0.02 uA Status: Off
TP_DC2       Slot: 3   (A1821HM ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
TP_MW0       Slot: 0   (A1821H  ) Channel:6   Vmon:      0 V   Imon:      0 uA Status: Off
TP_MW1       Slot: 0   (A1821H  ) Channel:7   Vmon:      0 V   Imon:      0 uA Status: Off
TP_cath1     Slot: 3   (A1821HM ) Channel:2   Vmon:    0.5 V   Imon:   0.02 uA Status: Off
TP_cath2     Slot: 3   (A1821HM ) Channel:3   Vmon:      0 V   Imon:      0 uA Status: Off
chan9        Slot: 7   (A1821H  ) Channel:9   Vmon:      0 V   Imon:      0 uA Status: Off
x            Slot: 6   (A1821H  ) Channel:2   Vmon:      0 V   Imon:      0 uA Status: Off
 Front panel value: 32636960
lpcgrit:~ $
Fixede744s Wed Apr 17 13:48:25 2019 Valerian and DiegoRUNSoftwareCH2New Dalitz plot with good angles in vamos
The previous Dalitz plot was wrong as I was using the angle from vamos as polar angles.
Now that it is corrected we see that this decay seems sequential.
Attachment 1: DalitzGoodAngle.png
DalitzGoodAngle.png
Fixede744s Fri Apr 26 11:29:02 2019 ValerianOTHERSoftwareN/ANotes about the electronic
While doing the electronic scheme, I saw that the Inspection line was inducing a bad signal in the coincidence module between fag and CATS1. See joined image.

Also, I broke a cable between CATS1 Fifo and the delay box, the delay is now 2 ns longer.
Attachment 1: Signal_oscilloscope_coinc_module.jpeg
Signal_oscilloscope_coinc_module.jpeg
Fixede786s Wed Jun 12 17:59:01 2019 mugastOTHERSoftware Online Energy Calibration
Updated Online Energy calibration for MUGAST, based on run_0231 data
Attachment 1: x_E_cal.png
x_E_cal.png
Attachment 2: y_E_cal2.png
y_E_cal2.png
Fixede786s Wed Jun 12 18:11:04 2019 mugastOTHERSoftware Online Energy Calibration
Fixede786s Fri Jun 21 15:15:08 2019 OttoTimeOTHERSoftwareN/ATimeCalibrationSuccessful

OttoTime wrote:
*** Run Time Calibrator FSC ***
- Run: 242
- MUVI: MUVI3
- Side : MUFEE Y (Ohmic)
- Telescope: 1, 2, 3, 4


Updated time calibration for Mugast and MUST2.
Attachment 1: time_cal_must2.png
time_cal_must2.png
Attachment 2: time_cal_mugast.png
time_cal_mugast.png
Fixede786s Mon Jun 24 01:52:00 2019 LouisOFFLINESoftwareCryo-3HeProcedure to convert and calibrate runs

Here is the updated procedure to convert a run, with VAMOS data.


Every 4Go there will be a file change, to see if there is a file change do :

ls -ltrh /data/mugastX/e786s/acquisition/run/


convert the last 4Go file and add it to the chain using the following step:

Step O: Take your favorite ortholinear keyboard (optional)

Step 1: Login the VAMOS environment and convert the run :

Open a terminal from one of the mugast computer:

Type: source $HOME/GoToVamosAna
Type: MyVAna -d2Ar -f /data/mugastX/e786s/acquisition/run/run_$$$$-DD-MM-YY.HHhMMmSSs /data/mugastX/e786s/acquisition/RootA/r$$$$_000a.root

OR

Type: MyVAna -d2Ar -f /data/mugastX/e786s/acquisition/run/run_$$$$-DD-MM-YY.HHhMMmSSs.N /data/mugastX/e786s/acquisition/RootA/r$$$$_00Na.root

(If you encounter the error on Brho "Could not find the BrhoRef for the run <RunNr> ", Update the ./Calibs/ListBrho.dat file with relevant Brho for RunNr)

Step 2: Analyse the file using the npanalysis program:

Type: exit (<-this exit the environment of VAMOS)
Type: lpcgrit (<-this load the analysis environment )
Type: npp MUGAST
Type: edit the exe.sh to treat releverant run. command should be: npanalysis -D mugast.detector -C Calibration.txt -E ./Reaction/46Ar3Hed.reaction -T ./offline/root_e786svamos/r$$$$_00Na.root AD -O run_$$$$_N.root

(This could be used with any file, either from Offline conversion, or the VAMOS Analysis conversion or the Merged Tree from AGATA)

The run will be created in the NPOutputs folder
Fixede786s Mon Jun 24 16:50:48 2019 Valerian and AdrienOFFLINESoftwareCryo-3He3He-d kinematics
To plot those kinematics, there is a macros called kine.cxx

The first plot correspond to the Silicon energy in MUGAST corrected for energy loss (some improvement might be needed)
Second plot is the same but without energy loss corrections (Raw silicon energy)
Third plot is the excitation energy of 47K
Attachment 1: Kine47K.png
Kine47K.png
Fixede768s Mon Jul 22 11:21:25 2019 mugastMUST2Software Pedestals of MG3
Pedestals of MG3_X have changed yesterday, they are back to about 8200 as they should be --> saved in ped_muvi2sec2_22072019_new
We are using wrong pedestals (of about 9600) --> the pedestals are saved under mugast account as ped_muvi2_sec2_22072019_sameas_1807219

We kept the same pedestals but we reduced the pedestal suppression to 0 - 6800 in order not to suppress the data of one other 2 mates.
The attached spectrum shows that all the X of MG3 are recovered (although the impact matrix still does not work)
Attachment 1: run_125_impactMG.png
run_125_impactMG.png
Attachment 2: run_125_MG3X.png
run_125_MG3X.png
Pinnede775s Thu Feb 27 12:44:37 2020 NicolasOFFLINESoftware How to produce control spectra
In /home/mugast/analysis/nptool/Projects/MUGAST/e775s directory there is the Control.C macro which draws: Ex, Ex vs Eg and Elab vs thetalab for each run (run number must be given in argument) or for chained runs (argument must be 0)
Pinnede775s Thu Feb 27 16:35:26 2020 NicolasOFFLINESoftware How to produce control spectra

Nicolas wrote:
In /home/mugast/analysis/nptool/Projects/MUGAST/e775s directory there is the Control.C macro which draws: Ex, Ex vs Eg and Elab vs thetalab for each run (run number must be given in argument) or for chained runs (argument must be 0)



A new file has been created to look into the CD2 target runs : Control_CD2.C
Ongoinge775s Sat Feb 29 10:34:31 2020 mugast ; valerian ireneOFFLINESoftwareCD2-AuIssues in the EX reconstruction
We are currently working on the EX reconstruction which is off for detector 1, 3 and 7... One of our guess might be that there is an issue with the position of the detectors which gives error in theta... As the energy calibration is ok. Joined are :

- the Excitation energy for good detectors compared to all detectors,
- the theoretical kinematic line for the 3.57 state for each detectors,
- the excitation energy as a function of the laboratory angle (for this last spectra a clear dependency is visible for telescopes 1,3 and 7)
- the 3D view, which doesn't show clear problem in position...
Attachment 1: Comparison_all_and_best_detector.png
Comparison_all_and_best_detector.png
Attachment 2: Kinematics_for_each_detectors.pdf
Kinematics_for_each_detectors.pdf
Attachment 3: ExvsTheta_each_detectors.pdf
ExvsTheta_each_detectors.pdf
Attachment 4: MUGAST_3D.pdf
MUGAST_3D.pdf

ELOG Home Page