Functions | |
def | help |
def | importDF |
def | indent |
def | search |
def | wrap_always |
def | wrap_onspace |
def | wrap_onspace_strict |
Variables | |
list | imported_modules = [] |
def dataformats.help | ( | ) |
def dataformats.importDF | ( | path | ) |
Definition at line 84 of file dataformats.py.
References split.
Referenced by help().
def dataformats.indent | ( | rows, | |
hasHeader = False , |
|||
headerChar = '-' , |
|||
delim = ' | ' , |
|||
justify = 'left' , |
|||
separateRows = False , |
|||
prefix = '' , |
|||
postfix = '' , |
|||
wrapfunc = lambda x:x |
|||
) |
Indents a table by column. - rows: A sequence of sequences of items, one sequence per row. - hasHeader: True if the first row consists of the columns' names. - headerChar: Character to be used for the row separator line (if hasHeader==True or separateRows==True). - delim: The column delimiter. - justify: Determines how are data justified in their column. Valid values are 'left','right' and 'center'. - separateRows: True if rows are to be separated by a line of 'headerChar's. - prefix: A string prepended to each printed row. - postfix: A string appended to each printed row. - wrapfunc: A function f(text) for wrapping text; each element in the table is first wrapped by this function.
Definition at line 5 of file dataformats.py.
References Association.map, max(), and split.
Referenced by CalibrationXML.addChild(), FWPSetTableManager.cellRenderer(), node_filter(), operator<<(), search(), and edm::ParameterDescription< std::vector< ParameterSet > >.writeOneElementToCfi().
def dataformats.search | ( | query | ) |
Definition at line 102 of file dataformats.py.
References indent(), join(), split, and wrap_always().
Referenced by dqm_interfaces.DirID.__eq__(), ValidationMatrix.add_to_blacklist(), ValidationMatrix.do_comparisons_threaded(), AlignmentMonitorTemplate.event(), FileNamesHelper.getJobID_fromFileName(), ValidationMatrix.guess_blacklists(), ValidationMatrix.guess_params(), help(), and duplicateReflexLibrarySearch.searchClassDefXml().
def dataformats.wrap_always | ( | text, | |
width | |||
) |
A simple word-wrap function that wraps text on exactly width characters. It doesn't split the text in words.
Definition at line 70 of file dataformats.py.
References join().
Referenced by search(), and wrap_onspace_strict().
def dataformats.wrap_onspace | ( | text, | |
width | |||
) |
A word-wrap function that preserves existing line breaks and most spaces in the text. Expects that existing line breaks are posix newlines (\n).
Definition at line 47 of file dataformats.py.
Referenced by lumiReport.toScreenConfHlt(), lumiReport.toScreenLSBeam(), and wrap_onspace_strict().
def dataformats.wrap_onspace_strict | ( | text, | |
width | |||
) |
Similar to wrap_onspace, but enforces the width constraint: words longer than width are split.
Definition at line 63 of file dataformats.py.
References wrap_always(), and wrap_onspace().
Referenced by lumiReport.toScreenLSEffective(), and lumiReport.toScreenTotEffective().
list dataformats.imported_modules = [] |
Definition at line 82 of file dataformats.py.