ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Anghel/macros/src/readTreeFunc.cc
Revision: 1.1
Committed: Fri Jan 29 23:06:49 2010 UTC (15 years, 3 months ago) by anghel
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Error occurred while calculating annotation data.
Log Message:
Revision 29Jan2010

File Contents

# Content
1 #include <string>
2 #include <iostream>
3
4 ////////////////////////////////////////////////////////////////////////////////////////////////////
5 // Given options for main()
6 ////////////////////////////////////////////////////////////////////////////////////////////////////
7
8 void WhichOption() {
9 std::cout << "\nUSAGE: readTree [OPTIONS]\n" << std::endl;
10 std::cout << "OPTIONS" << std::endl;
11 std::cout << " -s SAMPLE" << std::endl;
12 std::cout << " what sample to use" << std::endl;
13 std::cout << " SAMPLE = TTjets,inclusiveMu,Wjets,Zjets,Vqq,Wc,singleTop" << std::endl;
14 std::cout << " -m MONTE CARLO " << std::endl;
15 std::cout << " what type of simulation to use" << std::endl;
16 std::cout << " MONTE CARLO = FullSim, FastSim" << std::endl;
17 std::cout << " -f FLAVOR FILTER" << std::endl;
18 std::cout << " what flavor filter" << std::endl;
19 std::cout << " FILTER = Wbb,Wcc,Wjets(light)" << std::endl;
20 std::cout << " -p SELECTION" << std::endl;
21 std::cout << " what is the selection applied" << std::endl;
22 std::cout << " SELECTION = true, nod0cut (control variable)" << std::endl;
23 std::cout << " -h" << std::endl;
24 std::cout << " display this message" << std::endl;
25 }
26