Logo Coherent WaveBurst  
Reference Guide
Logo
 All Namespaces Files Functions Variables Macros Pages
PP_2bin_Cuts.hh
Go to the documentation of this file.
1 // -------------------------------------------------------------------------------
2 // Definitions of the search bins used for the Offline Long Duration Search
3 // -------------------------------------------------------------------------------
4 
5 // definition of the selection selection cuts
6 TCut dqveto_cut("dqveto_cut","!veto_hveto_H1 && !veto_hveto_L1");
7 TCut freq1_cut("freq1_cut","frequency[0]>24 && frequency[0]<2048");
8 TCut freq2_cut("freq2_cut","!(abs(frequency[0]-1011)<1)");
9 TCut freq3_cut("freq3_cut","(frequency[0]<200)");
10 TCut netcc_cut("netcc_cut","netcc[0]>0.6 && netcc[2]>0.6");
11 TCut dur_cut("dur_cut","duration[0]>1.5");
12 
13 // definition of the exclusive bins
14 TCut bin1_cut = TCut("bin1_cut",(dqveto_cut+freq1_cut+netcc_cut+dur_cut).GetTitle());
15 TCut bin2_cut = TCut("bin2_cut",(dqveto_cut+freq1_cut+freq2_cut+netcc_cut+dur_cut).GetTitle());
16 
17 TCut bin1FR_cut = TCut("bin1FR_cut",(dqveto_cut+freq1_cut+freq3_cut+netcc_cut+dur_cut).GetTitle());
18 TCut bin2FR_cut = TCut("bin2FR_cut",(dqveto_cut+freq1_cut+!freq3_cut+netcc_cut+dur_cut).GetTitle());
19 
20 //cout << "bin1_cut : " << bin1_cut.GetTitle() << endl;
TCut freq1_cut("freq1_cut","frequency[0]>24 && frequency[0]<2048")
TCut netcc_cut("netcc_cut","netcc[0]>0.6 && netcc[2]>0.6")
TCut dqveto_cut("dqveto_cut","!veto_hveto_H1 && !veto_hveto_L1")
TCut bin1_cut
Definition: PP_2bin_Cuts.hh:14
TCut bin2FR_cut
Definition: PP_2bin_Cuts.hh:18
TCut freq2_cut("freq2_cut","!(abs(frequency[0]-1011)<1)")
TCut bin1FR_cut
Definition: PP_2bin_Cuts.hh:17
TCut bin2_cut
Definition: PP_2bin_Cuts.hh:15
TCut freq3_cut("freq3_cut","(frequency[0]<200)")
TCut dur_cut("dur_cut","duration[0]>1.5")