Revision: | 1.1 |
Committed: | Wed Jan 21 18:36:10 2009 UTC (16 years, 3 months ago) by kukartse |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | V00-03-01, ZMorph_BASE_20100408, gak040610_morphing, V00-02-02, gak011410, gak010310, ejterm2010_25nov2009, V00-02-01, V00-02-00, gak112409, CMSSW_22X_branch_base, segala101609, V00-01-15, V00-01-14, V00-01-13, V00-01-12, V00-01-11, V00-01-10, gak031009, gak030509, gak022309, gak021209, gak040209, gak012809, V00-01-09, V00-01-08, V00-01-07, V00-01-06, V00-01-05, V00-01-04, HEAD |
Branch point for: | ZMorph-V00-03-01, CMSSW_22X_branch |
Log Message: | after JTerm status update |
# | User | Rev | Content |
---|---|---|---|
1 | kukartse | 1.1 | { |
2 | TChain chain("ttljets"); | ||
3 | chain . Add("./ttlj_chowder_topSemiLepMuon-17sep2008.root"); | ||
4 | |||
5 | gROOT->Macro("./cuts.C"); | ||
6 | |||
7 | TH1F h_jet1pt_qcd("h_jet1pt_qcd","", 100, 0, 500); | ||
8 | TH1F h_jet1pt_wzjets("h_jet1pt_wzjets","", 100, 0, 500); | ||
9 | TH1F h_jet1pt_ttbar("h_jet1pt_ttbar","", 100, 0, 500); | ||
10 | |||
11 | TCanvas c("canvas", "canvas", 500, 400); | ||
12 | //c.Divide(2,1); | ||
13 | |||
14 | TCut the_cut = cut_18sep2008; | ||
15 | |||
16 | //c.cd(1); | ||
17 | //c.GetPad(1).SetLogy(1); | ||
18 | h_jet1pt_ttbar . SetNdivisions(6); | ||
19 | //h_jet1pt_ttbar . Sumw2(); | ||
20 | //chain . Draw("jet1_pt>>h_jet1pt_qcd", weight*the_cut*qcd_incl); | ||
21 | chain . Draw("jet1_pt>>h_jet1pt_wzjets", weight*the_cut*wzjets); | ||
22 | chain . Draw("jet1_pt>>h_jet1pt_ttbar", weight*the_cut*ttbar); | ||
23 | |||
24 | TH1F h1 = h_jet1pt_ttbar + h_jet1pt_wzjets; | ||
25 | TH1F h2 = h_jet1pt_wzjets; | ||
26 | TH1F h3 = h_jet1pt_qcd; | ||
27 | |||
28 | h1 . SetFillColor(2); | ||
29 | h2 . SetFillColor(3); | ||
30 | h3 . SetFillColor(4); | ||
31 | h1.Draw(); | ||
32 | h2.Draw("same"); | ||
33 | //h3.Draw("same"); | ||
34 | |||
35 | c.SaveAs("jet1pt.eps"); | ||
36 | } |