CMS 3D CMS Logo

List of all members | Public Member Functions
bookConverter.OptionParser Class Reference
Inheritance diagram for bookConverter.OptionParser:

Public Member Functions

def __init__ (self)
 

Detailed Description

OptionParser is main class to parse options.

Definition at line 5 of file bookConverter.py.

Constructor & Destructor Documentation

◆ __init__()

def bookConverter.OptionParser.__init__ (   self)

Definition at line 9 of file bookConverter.py.

9  def __init__(self):
10  optparse.OptionParser.__init__(self, usage="%prog --help or %prog [options] file", version="%prog 0.0.1", conflict_handler="resolve")
11  self.add_option("--src", action="store", type="string", dest="src", help="specify source XML file")
12  self.add_option("--min", action="store", type="int", dest="min", help="Minimum length to measure")
13  self.add_option("--max", action="store", type="int", dest="max", help="Maximum length to measure")
14  self.add_option("--cid", action="store", type="int", dest="cid", help="Apply combination ID")
15  self.add_option("--xsd", action="store_true", dest="xsd", help="Create XML Schema fragment")
16 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)