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 |
|