ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/Configuration/python/processingUtilities.py
Revision: 1.12
Committed: Wed Mar 27 13:19:39 2013 UTC (12 years, 1 month ago) by lantonel
Content type: text/x-python
Branch: MAIN
Changes since 1.11: +14 -10 lines
Log Message:
reworded the -d option description

File Contents

# User Rev Content
1 lantonel 1.1 #!/usr/bin/env python
2     import os
3     import sys
4     import datetime
5 lantonel 1.8 from optparse import OptionParser
6 lantonel 1.2 from OSUT3Analysis.Configuration.configurationOptions import *
7    
8 lantonel 1.1
9     def split_composite_datasets(datasets):
10     for dataset in datasets:
11     if dataset in composite_dataset_definitions:
12     for component_dataset in composite_dataset_definitions[dataset]:
13     datasets.insert(datasets.index(dataset),component_dataset)
14     datasets.remove(dataset)
15     return datasets
16    
17     def get_composite_datasets(datasets):
18     composite_datasets = []
19     for dataset in datasets:
20     if dataset in composite_dataset_definitions:
21     composite_datasets.append(dataset)
22     return composite_datasets
23    
24 lantonel 1.7 def set_condor_submit_dir(arguments):
25     if arguments.condorDir:
26     condor_dir = "condor/%s" % arguments.condorDir
27 lantonel 1.1 else:
28     now = datetime.datetime.now()
29     date_hash = now.strftime("%Y_%m_%d_%H:%M:%S")
30     condor_dir = "condor/condor_%s" % date_hash
31 lantonel 1.3 #print "Condor submit directory set to ",condor_dir
32 lantonel 1.1 return condor_dir
33    
34 lantonel 1.7 def set_condor_output_dir(arguments):
35     if arguments.condorDir:
36     condor_dir = "condor/%s" % arguments.condorDir
37 lantonel 1.1 else: #get most recent condor submission directory
38     dir_list = []
39     for directory in os.listdir("./condor/"):
40     if directory.find("condor_") is not -1:
41     dir_list.append(directory)
42     if len(dir_list) is 0:
43     sys.exit("Cannot find last condor working directory")
44     dir_list.sort(reverse=True)
45     condor_dir = "condor/%s" % dir_list[0]
46 lantonel 1.3 #print "Condor output directory set to ",condor_dir
47 lantonel 1.1 return condor_dir
48    
49     def set_commandline_arguments(parser):
50 lantonel 1.12 #### Configuration-related Options
51 lantonel 1.8 parser.add_option("-l", "--localConfig", dest="localConfig",
52 lantonel 1.1 help="local configuration file")
53 lantonel 1.8 parser.add_option("-c", "--condorDir", dest="condorDir",
54 lantonel 1.5 help="condor output directory")
55 lantonel 1.12 parser.add_option("-o", "--output-file", dest="outputFileName",
56     help="specify an output file name for the histogram file, default is 'stacked_histograms.root'")
57     parser.add_option("-t", "--no-weights", action="store_true", dest="noWeights", default=False,
58     help="do not apply cross section weights")
59    
60    
61     #### Histogram Formatting Options
62 lantonel 1.8 parser.add_option("-n", "--normalize", action="store_true", dest="normalizeToData", default=False,
63 lantonel 1.5 help="normalize total background MC yield to the data")
64 lantonel 1.8 parser.add_option("-u", "--unit-area", action="store_true", dest="normalizeToUnitArea", default=False,
65 lantonel 1.5 help="normalize all samples to unit area (useful to compare shapes)")
66 lantonel 1.8 parser.add_option("-e", "--empty", action="store_true", dest="noStack", default=False,
67 lantonel 1.5 help="don't stack the background samples, draw them as empty histograms instead")
68 lantonel 1.12
69 lantonel 1.8 parser.add_option("-r", "--ratio", action="store_true", dest="makeRatioPlots", default=False,
70 lantonel 1.6 help="draw (data-MC)/MC plots below all 1D histograms")
71 lantonel 1.12 parser.add_option("-d", "--diff", action="store_true", dest="makeDiffPlots", default=False,
72     help="draw data-MC plots below all 1D histograms")
73     parser.add_option("-b", "--rebin", dest="rebinFactor",
74     help="Rebin all the histograms which will have at least 10 bins after rebinning")
75    
76 lantonel 1.1 return parser
77    
78     def get_short_name(dataset):
79     for key in dataset_names:
80     if dataset_names[key] == dataset:
81     return key;
82     return "Unknown"