ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/Configuration/python/processingUtilities.py
(Generate patch)

Comparing UserCode/OSUT3Analysis/Configuration/python/processingUtilities.py (file contents):
Revision 1.8 by lantonel, Wed Mar 13 09:27:52 2013 UTC vs.
Revision 1.12 by lantonel, Wed Mar 27 13:19:39 2013 UTC

# Line 47 | Line 47 | def set_condor_output_dir(arguments):
47      return condor_dir
48  
49   def set_commandline_arguments(parser):
50 +    #### Configuration-related Options
51      parser.add_option("-l", "--localConfig", dest="localConfig",
52                    help="local configuration file")
52
53      parser.add_option("-c", "--condorDir", dest="condorDir",
54                        help="condor output directory")
55 +    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      parser.add_option("-n", "--normalize", action="store_true", dest="normalizeToData", default=False,
63                        help="normalize total background MC yield to the data")
64      parser.add_option("-u", "--unit-area", action="store_true", dest="normalizeToUnitArea", default=False,
65                        help="normalize all samples to unit area (useful to compare shapes)")
66      parser.add_option("-e", "--empty", action="store_true", dest="noStack", default=False,
67                        help="don't stack the background samples, draw them as empty histograms instead")
68 +
69      parser.add_option("-r", "--ratio", action="store_true", dest="makeRatioPlots", default=False,
70                        help="draw (data-MC)/MC plots below all 1D histograms")
71 <    parser.add_option("-o", "--output-file", dest="outputFileName",
72 <                      help="specify an output file name for the histogram file, default is 'stacked_histograms.root'")
73 <    
71 >    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      return parser
77  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines