ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/tschum/start.C
Revision: 1.1.1.1 (vendor branch)
Committed: Wed Nov 11 15:34:20 2009 UTC (15 years, 5 months ago) by tschum
Content type: text/plain
Branch: FWlite_Analysis, MAIN
CVS Tags: START, HEAD
Changes since 1.1: +0 -0 lines
Log Message:
plotting tool ---first commit---

File Contents

# Content
1 {
2 gROOT->ProcessLine(".L PlotTool.cc+");
3 PlotTool p;
4 p.init("Cosmics");
5 p.init("ZeroBias");
6
7 vector<string> vars;
8 vector<string> cuts;
9
10 vars.push_back("sisCone5CaloJets.phi()");
11 vars.push_back("antikt5CaloJets.phi()");
12
13 cuts.push_back("");
14
15
16 // p.samePad_vars = true;
17 // p.sameCanv_cuts = true;
18
19 // p.showLegend = true;
20
21 p.loop(vars,cuts,500);
22
23
24 // p.saveCanvases(".ps","./")
25
26 }