Skip to content
Snippets Groups Projects
Commit aece1791 authored by hallc-online's avatar hallc-online
Browse files

Change thresholds on the HMS Cherenkov to 1.5 pe.

parent c2e3787a
No related branches found
No related tags found
No related merge requests found
......@@ -27,12 +27,14 @@
#define DELTA_MIN -10 //HMS nominal acceptance
#define DELTA_MAX 10
#define PR_ADC_THR 0
#define SH_ADC_THR 0
//#define PR_ADC_THR 0
//#define SH_ADC_THR 0
#define BETA_MIN 0.5
#define BETA_MAX 1.5
#define CER_MIN 1.5
using namespace std;
//
......@@ -419,8 +421,8 @@ TBranch ("H.tr.beta", &H_tr_beta);
H_tr_y + H_tr_yp*D_CALO_FP < YMAX ;
if (!good_trk) return 0;
bool good_cer = H_cer_npe[0] > 0.125 ||
H_cer_npe[1] > 0.125 ;
bool good_cer = H_cer_npe[0] > CER_MIN ||
H_cer_npe[1] > CER_MIN ;
if(!good_cer) return 0;
bool good_beta = H_tr_beta > BETA_MIN &&
......
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