Changes between Version 18 and Version 19 of WritingAnalyses


Ignore:
Timestamp:
Jul 9, 2015, 11:04:07 AM (10 years ago)
Author:
Jory Sonneveld
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WritingAnalyses

    v18 v19  
    6161  // initialize variables, histos
    6262  // Initialize signal regions
    63   Manager()->AddRegionSelection("200<MET<500,100<HT<500"); // SR1
    64   Manager()->AddRegionSelection("MET>500,100<HT<500"); // SR2
    65   Manager()->AddRegionSelection("200<MET<500,HT>500"); // SR3
    66   Manager()->AddRegionSelection("MET>500,HT>500"); // SR4
     63  Manager()->AddRegionSelection("200<MET<500,100<HT<500"); // SR0
     64  Manager()->AddRegionSelection("MET>500,100<HT<500"); // SR1
     65  Manager()->AddRegionSelection("200<MET<500,HT>500"); // SR2
     66  Manager()->AddRegionSelection("MET>500,HT>500"); // SR3
    6767}}}
    6868
     
    8989{{{
    9090  // Signal-region specific cuts
    91   // MET < 500 for signal regions 1 and 3:
    92   string SR_1_3[] = {"200<MET<500,100<HT<500", "200<MET<500,HT>500"};
    93   Manager()->AddCut("MET<500", SR_1_3);
    94 
    95   // HT < 500 applies to signal regions 1 and 2:
    96   string SR_1_2[] = {"200<MET<500,100<HT<500", "MET>500,100<HT<500"};
    97   Manager()->AddCut("HT<500", SR_1_2);
    98 
    99   // HT > 500 applies to signal regions 3 and 4:
    100   string SR_3_4[] = {"200<MET<500,HT>500", "MET>500,HT>500"};
    101   Manager()->AddCut("HT>500", SR_3_4);
    102 
    103   // MET > 500 for signal regions 2 and 4:
    104   string SR_2_4[] = {"MET>500,100<HT<500", "MET>500,HT>500"};
    105   Manager()->AddCut("MET>500", SR_2_4);
     91  // MET < 500 for signal regions 0 and 2:
     92  string SR_0_2[] = {"200<MET<500,100<HT<500", "200<MET<500,HT>500"};
     93  Manager()->AddCut("MET<500", SR_0_2);
     94
     95  // HT < 500 applies to signal regions 0 and 1:
     96  string SR_0_1[] = {"200<MET<500,100<HT<500", "MET>500,100<HT<500"};
     97  Manager()->AddCut("HT<500", SR_0_1);
     98
     99  // HT > 500 applies to signal regions 2 and 3:
     100  string SR_2_3[] = {"200<MET<500,HT>500", "MET>500,HT>500"};
     101  Manager()->AddCut("HT>500", SR_2_3);
     102
     103  // MET > 500 for signal regions 1 and 3:
     104  string SR_1_3[] = {"MET>500,100<HT<500", "MET>500,HT>500"};
     105  Manager()->AddCut("MET>500", SR_1_3);
    106106}}}
    107107
     
    215215{{{
    216216    // =====Apply signal region cuts=======
    217     Manager()->ApplyCut(MET < 500, "MET<500"); // SR1, SR3
    218     Manager()->ApplyCut(HT < 500, "HT<500"); // SR1, SR2
    219     Manager()->ApplyCut(HT >= 500, "HT>500"); // SR3, SR4
    220     Manager()->ApplyCut(MET >= 500, "MET>500"); // SR2, SR4
     217    Manager()->ApplyCut(MET < 500, "MET<500"); // SR0, SR2
     218    Manager()->ApplyCut(HT < 500, "HT<500"); // SR0, SR1
     219    Manager()->ApplyCut(HT >= 500, "HT>500"); // SR2, SR3
     220    Manager()->ApplyCut(MET >= 500, "MET>500"); // SR1, SR3
    221221}}}
    222222and close the block and end the file with:
     
    234234
    235235For our analysis we have a luminosity of 20fb-1, and four each of the four signal regions we have observed numbers of events (nobs), estimated backgrounds (nb), and background errors (deltanb) as follows:
    236  * Signal region 1, 200<MET<500,100<HT<500: nobs=6159, nb=6090.0, deltanb=670.0
    237  * Signal region 2, MET>500,100<HT<500: nobs=2305, nb=2280.0, deltanb=270.0
    238  * Signal region 3, 200<MET<500,HT>500: nobs=451, nb=418.0, deltanb=66.0
    239  * Signal region 4, MET>500,100<HT<500: nobs=62, nb=57.4, deltanb=11.4
     236 * Signal region 0, 200<MET<500,100<HT<500: nobs=6159, nb=6090.0, deltanb=670.0
     237 * Signal region 1, MET>500,100<HT<500: nobs=2305, nb=2280.0, deltanb=270.0
     238 * Signal region 2, 200<MET<500,HT>500: nobs=451, nb=418.0, deltanb=66.0
     239 * Signal region 3, MET>500,100<HT<500: nobs=62, nb=57.4, deltanb=11.4
    240240From this we create the following cat_ued_16_013.info
    241241{{{