Skip to content
Snippets Groups Projects

Add y, Q2, x, t resolution tests

Open Ziyue Zhang requested to merge ziyue_work_branch into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -132,15 +132,15 @@ int vm_invar(const std::string& config_name)
@@ -132,15 +132,15 @@ int vm_invar(const std::string& config_name)
//Factorized
//Factorized
TString VarName[4] = {"y", "Q2", "x", "t"};
TString VarName[4] = {"y", "Q2", "x", "t"};
auto h_sim[4];
TH1D h_sim[4];
auto h_rec[4];
//auto h_rec[4];
auto h_diff[4];
//auto h_diff[4];
double fun_range[4] = {1.5, 0.3, 1., 2.};
double fun_range[4] = {1.5, 0.3, 1., 2.};
double hist_range_l[4] = {0., 0., 0., -1.};
double hist_range_l[4] = {0., 0., 0., -1.};
double hist_range_h[4] = {1., 15., 0.1, 0.};
double hist_range_h[4] = {1., 15., 0.1, 0.};
h_sim[0] = (TH1D*)d_im.Histo1D({"h_Q2_sim", ";Q^{2};#", 50, hist_range_l[0], hist_range_h[0]}, "Q2_sim");
h_sim[0] = d_im.Histo1D({"h_Q2_sim", ";Q^{2};#", 50, hist_range_l[0], hist_range_h[0]}, "Q2_sim");
/*for(int i = 0 ; i < 4 ; i++){
/*for(int i = 0 ; i < 4 ; i++){
if(i==1){
if(i==1){
Loading