ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/NonMCBackground/interface/FOArgs.h
Revision: 1.1
Committed: Sat Dec 17 21:29:31 2011 UTC (13 years, 5 months ago) by dkralph
Content type: text/plain
Branch: MAIN
CVS Tags: synced_FSR_2, synced_FSR, synched2, synched, AN490
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 dkralph 1.1 #ifndef FOARGS
2     #define FOARGS
3    
4     #include <iostream>
5     #include "TString.h"
6     using namespace std;
7    
8     class FOFlags {
9     public :
10     TString inputdir;
11     TString etabin;
12     TString ptbin;
13     FOFlags():inputdir(""),etabin(""),ptbin(""){};
14    
15     void dump() {
16     cout << "--------options---------" << endl;
17     cout << "inputdir: " << inputdir << endl;
18     cout << "etabin: " << etabin << endl;
19     cout << "ptbin: " << ptbin << endl;
20     cout << "------------------------" << endl;
21     };
22     };
23    
24     void parse_foargs( int argc, char** argv, FOFlags &flags );
25    
26     #endif