CMS 3D CMS Logo

Functions | Variables
reportVsReport Namespace Reference

Functions

def CSC (csc, endcap, station, ring, chamber)
 
def CSCE1 (csc, endcap, station, ring, chamber)
 
def CSCE2 (csc, endcap, station, ring, chamber)
 
def DT (dt, wheel, station, sector)
 definitions of selectors: More...
 

Variables

 args
 
 c1
 
string commandline = " "
 
 copyargs = sys.argv[:]
 
 default
 
 dest
 
 filename
 
 help
 
 options
 
 parser = optparse.OptionParser(usage)
 
 prog = sys.argv[0]
 
 rx = reports
 
 ry = reports
 
 selection = options.selection
 main part More...
 
 type
 
string usage
 

Function Documentation

def reportVsReport.CSC (   csc,
  endcap,
  station,
  ring,
  chamber 
)

Definition at line 64 of file reportVsReport.py.

64 def CSC(csc, endcap, station, ring, chamber):
65  if csc != "CSC": return False
66  # skip the duplicated ME1/a
67  if station==1 and ring==4: return False
68  # skip non-instrumented ME4/2's:
69  if station==4 and ring==2 and ( (endcap==1 and (chamber<9 or chamber >13)) or endcap==2 ) : return False
70  return True
71 
def CSC(csc, endcap, station, ring, chamber)
def reportVsReport.CSCE1 (   csc,
  endcap,
  station,
  ring,
  chamber 
)

Definition at line 72 of file reportVsReport.py.

72 def CSCE1(csc, endcap, station, ring, chamber): return CSC(csc, endcap, station, ring, chamber) and endcap==1
73 
def CSCE1(csc, endcap, station, ring, chamber)
def reportVsReport.CSCE2 (   csc,
  endcap,
  station,
  ring,
  chamber 
)

Definition at line 74 of file reportVsReport.py.

74 def CSCE2(csc, endcap, station, ring, chamber): return CSC(csc, endcap, station, ring, chamber) and endcap==2
75 
76 
def CSCE2(csc, endcap, station, ring, chamber)
def reportVsReport.DT (   dt,
  wheel,
  station,
  sector 
)

definitions of selectors:

Definition at line 62 of file reportVsReport.py.

62 def DT(dt, wheel, station, sector): return dt == "DT"
63 
def DT(dt, wheel, station, sector)
definitions of selectors:

Variable Documentation

reportVsReport.args

Definition at line 55 of file reportVsReport.py.

reportVsReport.c1

Definition at line 91 of file reportVsReport.py.

string reportVsReport.commandline = " "

Definition at line 12 of file reportVsReport.py.

reportVsReport.copyargs = sys.argv[:]

Definition at line 7 of file reportVsReport.py.

reportVsReport.default

Definition at line 27 of file reportVsReport.py.

reportVsReport.dest

Definition at line 28 of file reportVsReport.py.

reportVsReport.filename

Definition at line 100 of file reportVsReport.py.

reportVsReport.help

Definition at line 25 of file reportVsReport.py.

reportVsReport.options

Definition at line 55 of file reportVsReport.py.

reportVsReport.parser = optparse.OptionParser(usage)

Definition at line 23 of file reportVsReport.py.

reportVsReport.prog = sys.argv[0]

Definition at line 15 of file reportVsReport.py.

reportVsReport.rx = reports

Definition at line 87 of file reportVsReport.py.

reportVsReport.ry = reports

Definition at line 89 of file reportVsReport.py.

reportVsReport.selection = options.selection

main part

Definition at line 83 of file reportVsReport.py.

reportVsReport.type

Definition at line 26 of file reportVsReport.py.

string reportVsReport.usage
Initial value:
1 = """Usage:
2 %(prog)s [options] reportX.py reportY.py
3 
4 Draws a scatterplot of delta corrections from reportX vs. from reportY.
5 """

Definition at line 17 of file reportVsReport.py.