Revision: | 1.1 |
Committed: | Tue May 7 09:39:48 2013 UTC (12 years ago) by lantonel |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | V02-03-02, V02-03-01, V02-03-00, V02-02-00, V02-01-01, V02-01-00, V01-01-00, V01-00-01, V01-00-00, V00-01-00, HEAD |
Log Message: | first commit of control region definitions |
# | User | Rev | Content |
---|---|---|---|
1 | lantonel | 1.1 | #!/usr/bin/env python |
2 | |||
3 | config_file = "singleMuAnalyzer_cfg.py" | ||
4 | #intLumi = 19417. # Full SingleMu | ||
5 | intLumi = 18533. # HLT_IsoMu24_v* | ||
6 | |||
7 | datasets = [ | ||
8 | |||
9 | #################### | ||
10 | ### data samples ### | ||
11 | #################### | ||
12 | |||
13 | 'SingleMu', | ||
14 | |||
15 | ########################## | ||
16 | ### background samples ### | ||
17 | ########################## | ||
18 | |||
19 | ## 'Wjets', | ||
20 | ## 'TTbar', | ||
21 | ## 'Diboson', | ||
22 | ## 'DY', | ||
23 | ## 'QCD_MuEnriched', | ||
24 | |||
25 | |||
26 | 'Wjets', | ||
27 | 'TTbar_Had', | ||
28 | 'TTbar_SemiLep', | ||
29 | 'TTbar_Lep', | ||
30 | 'WW', | ||
31 | 'WZ', | ||
32 | 'ZZ', | ||
33 | 'DYToEE_20', | ||
34 | 'DYToMuMu_20', | ||
35 | 'DYToTauTau_20', | ||
36 | 'QCD_MuEnriched', | ||
37 | |||
38 | ] | ||
39 |