Logo coherent WaveBurst  
Config Reference Guide
Logo
PP_Cuts.hh
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Definitions of the search bins used for the Online Short Burst Search
3 // -------------------------------------------------------------------------
4 
5 // definition of the selection selection cuts
6 TCut norm_cut("norm_cut","norm>2.5");
7 TCut freq_cut("freq_cut","frequency[0]>24 && frequency[0]<2000");
8 TCut netcc_cut("netcc_cut","netcc[0]>0.8 && netcc[2]>0.8");
9 TCut qveto_cut("qveto_cut","Qveto[0]>0.1 && Qveto[1]>0.1 && Qveto[2]>0.1 && Qveto[3]>0.1");
10 TCut lveto_cut("lveto_cut","!(bandwidth[0]<5 || (Lveto[1]<5 && Lveto[2]>0.8))");
11 TCut notch1kHz("notch1kHz","frequency[0]>1060 && frequency[0]<1120");
12 TCut notch1d5kHz("notch1d5kHz","frequency[0]>1534 && frequency[0]<1548");
13 
14 // definition of the inclusive bins
15 TCut unmodeled_cut = TCut("unmodeled_cut",(norm_cut+netcc_cut+freq_cut+!notch1kHz+!notch1d5kHz).GetTitle());
16 TCut constrained_cut = TCut("constrained_cut",(norm_cut+netcc_cut+freq_cut+qveto_cut+lveto_cut+!notch1kHz+!notch1d5kHz).GetTitle());
17 
18 //cout << "unmodeled_cut : " << unmodeled_cut.GetTitle() << endl;
19 //cout << "constrained_cut : " << constrained_cut.GetTitle() << endl;
20 
21 // definition of the exclusive bins
22 TCut bin1_cut = TCut("bin1_cut",(unmodeled_cut+!constrained_cut).GetTitle());
23 TCut bin2_cut = TCut("bin2_cut",(constrained_cut).GetTitle());
24 
25 //cout << "bin1_cut : " << bin1_cut.GetTitle() << endl;
26 //cout << "bin2_cut : " << bin2_cut.GetTitle() << endl;
TCut bin1_cut
Definition: PP_Cuts.hh:16
TCut qveto_cut("qveto_cut","Qveto[0]>0.3")
TCut lveto_cut("lveto_cut","!(bandwidth[0]<5 || (Lveto[1]<5 && Lveto[2]>0.8))")
TCut netcc_cut("netcc_cut","netcc[0]>0.7 && netcc[2]>0.7")
TCut freq_cut("freq_cut","frequency[0]>48 && frequency[0]<992")
TCut norm_cut("norm_cut","norm>2.5")
TCut constrained_cut
Definition: PP_Cuts.hh:16
TCut bin2_cut
Definition: PP_Cuts.hh:23
TCut unmodeled_cut
Definition: PP_Cuts.hh:15
TCut notch1d5kHz("notch1d5kHz","frequency[0]>1534 && frequency[0]<1548")
TCut notch1kHz("notch1kHz","frequency[0]>1060 && frequency[0]<1120")