Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:13:11

0001 const int n_hcal_etabin = 24;
0002 const int n_hcal_phibin = 64;
0003 
0004 const float PI = TMath::Pi();
0005 const float jet_radius = 0.4;
0006 
0007 double calibptbins[] = {15, 19, 23.5, 28.5, 34, 40, 47, 54.5, 63, 72};
0008 double truthptbins[] = {7, 11, 15, 19, 23.5, 28.5, 34, 40, 47, 54.5, 63, 72, 82};
0009 
0010 int calibnpt = sizeof(calibptbins) / sizeof(calibptbins[0]) - 1;
0011 int truthnpt = sizeof(truthptbins) / sizeof(truthptbins[0]) - 1;
0012 
0013 double n_MB_events = 21.885464;
0014 double n_Jet10GeV_events = 2.664378;
0015 double n_Jet30GeV_events = 2.194879;
0016 
0017 double MB_cross_section = 4.197e-2;
0018 double Jet10GeV_cross_section = 3.646e-6;
0019 double Jet30GeV_cross_section = 2.505e-9;
0020 
0021 double MB_scale = MB_cross_section/(double)n_MB_events;
0022 double Jet10GeV_scale = Jet10GeV_cross_section/(double)n_Jet10GeV_events;
0023 double Jet30GeV_scale = Jet30GeV_cross_section/(double)n_Jet30GeV_events;