Skip to content
Snippets Groups Projects
Commit 09eb1f23 authored by Theodore Efremov's avatar Theodore Efremov :hibiscus:
Browse files

changed type in convert

parent 2f7fdb1e
No related branches found
No related tags found
1 merge request!27Draft: [Epic] Preparation of the environement for the new GaseousDetectorScorers...
Pipeline #373809 passed
......@@ -78,7 +78,7 @@ void convert(int run=204){
for (int i=0; i<ICRawM; i++){
m_ic->SetIC_TS(ICRawTS[i]);
m_ic->SetIC_Section(i+1);
m_ic->SetIC_Charge(IC[i]);
m_ic->SetIC_Charge(ICRaw[i]);
}
// Time //
......@@ -267,8 +267,8 @@ void InitInputTree(){
input_tree->SetBranchAddress("MTOF_FP1_T1VTS",&MTOF_FP1_T1VTS);
// IC
input_tree->SetBranchStatus("IC","true");
input_tree->SetBranchAddress("IC",&IC);
input_tree->SetBranchStatus("ICRaw","true");
input_tree->SetBranchAddress("ICRaw",&ICRaw);
input_tree->SetBranchStatus("ICRawTS","true");
input_tree->SetBranchAddress("ICRawTS",&ICRawTS);
......
......@@ -20,10 +20,10 @@ Float_t MTOF_FP1_T0V[92];
Float_t MTOF_FP0_T1V[92];
Float_t MTOF_FP1_T1V[92];
Int_t MTOF_FP0_T0VN[20];
Int_t MTOF_FP1_T0VN[20];
Int_t MTOF_FP0_T1VN[20];
Int_t MTOF_FP1_T1VN[20];
short MTOF_FP0_T0VN[20];
short MTOF_FP1_T0VN[20];
short MTOF_FP0_T1VN[20];
short MTOF_FP1_T1VN[20];
long MTOF_FP0_T0VTS[20];
long MTOF_FP0_T1VTS[20];
......@@ -49,7 +49,7 @@ ULong64_t fPISTA_TS_sec;
ULong64_t PISTA_TS;
// IC //
float IC[11];
UShort_t ICRaw[11];
long ICRawTS[11];
int ICRawM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment