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 63 of file reportVsReport.py.

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

Definition at line 71 of file reportVsReport.py.

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

Definition at line 73 of file reportVsReport.py.

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

definitions of selectors:

Definition at line 61 of file reportVsReport.py.

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

Variable Documentation

reportVsReport.args

Definition at line 54 of file reportVsReport.py.

reportVsReport.c1

Definition at line 90 of file reportVsReport.py.

string reportVsReport.commandline = " "

Definition at line 11 of file reportVsReport.py.

reportVsReport.copyargs = sys.argv[:]

Definition at line 6 of file reportVsReport.py.

reportVsReport.default

Definition at line 26 of file reportVsReport.py.

reportVsReport.dest

Definition at line 27 of file reportVsReport.py.

reportVsReport.filename

Definition at line 99 of file reportVsReport.py.

reportVsReport.help

Definition at line 24 of file reportVsReport.py.

reportVsReport.options

Definition at line 54 of file reportVsReport.py.

reportVsReport.parser = optparse.OptionParser(usage)

Definition at line 22 of file reportVsReport.py.

reportVsReport.prog = sys.argv[0]

Definition at line 14 of file reportVsReport.py.

reportVsReport.rx = reports

Definition at line 86 of file reportVsReport.py.

reportVsReport.ry = reports

Definition at line 88 of file reportVsReport.py.

reportVsReport.selection = options.selection

main part

Definition at line 82 of file reportVsReport.py.

reportVsReport.type

Definition at line 25 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 16 of file reportVsReport.py.