Functions | |
def | indent |
Variables | |
string | data |
int | headerwidth = 46 |
tuple | labels = ('First Name','Last Name','Age','Position') |
list | lumidata |
list | lumifooter = [('%-*s'%(24,'189'),'%-*s'%(10,'17.89'),'%-*s'%(10,'16.1'),'%-*s'%(20,'3.47'))] |
list | lumiheader = [('%-*s'%(30,'Lumi Sections'),'%-*s'%(46,'Luminosity'))] |
list | rows = [row.strip().split(',') for row in data.splitlines()] |
int | width = 10 |
def tablePrinter.indent | ( | rows, | |
hasHeader = False , |
|||
headerChar = '-' , |
|||
delim = ' | ' , |
|||
justify = 'center' , |
|||
separateRows = False , |
|||
prefix = '' , |
|||
postfix = '' , |
|||
wrapfunc = lambda x:x |
|||
) |
Indents a table by column. - rows: A sequence of sequences of items, one sequence per row. - hadHeader: True if the first row consists of the column's 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','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 8 of file tablePrinter.py.
References python.multivaluedict.map(), max(), and split.
string tablePrinter.data |
Definition at line 51 of file tablePrinter.py.
int tablePrinter.headerwidth = 46 |
Definition at line 71 of file tablePrinter.py.
tuple tablePrinter.labels = ('First Name','Last Name','Age','Position') |
Definition at line 50 of file tablePrinter.py.
Referenced by BTagPerformanceAnalyzerOnData.analyze(), BTagPerformanceAnalyzerMC.analyze(), HLTPrescaleRecorder.beginRun(), HLTMuonOfflineAnalyzer.beginRun(), HLTMuonValidator.beginRun(), DigiInvestigatorHistogramMaker.book(), DigiPileupCorrHistogramMaker.book(), DigiVertexCorrHistogramMaker.book(), DigiLumiCorrHistogramMaker.book(), DigiBXCorrHistogramMaker< T >.book(), cscdqm::Collection.book(), CollectionCombiner< Collection >.CollectionCombiner(), pat::TauJetCorrFactors.correctionLabels(), pat::JetCorrFactors.correctionLabels(), pat::TauJetCorrFactors.correctionLabelString(), pat::JetCorrFactors.correctionLabelString(), HLTConfigData.dump(), HLTPrescaleRecorder.endRun(), TauDQMHistPlotter.endRun(), GenericTriggerEventFlag.expressionsFromDB(), HLTConfigData.extract(), EcalMIPRecHitFilter.filter(), HCalSD.HCalSD(), edm::EDConsumerBase.labelsForToken(), rpcdqm::utils.labelYAxisRing(), hitfit.make_constraint_intermed(), edm::PrincipalGetAdapter.makeFailToGetException(), PlotCombiner.makePlot(), MultiplicityTimeCorrelations.MultiplicityTimeCorrelations(), FastTimerService.preStreamBeginRun(), ReducedESRecHitCollectionProducer.produce(), CollectionCombiner< Collection >.produce(), ReducedRecHitCollectionProducer.produce(), TrackClusterRemover.produce(), SeedClusterRemover.produce(), DTLocalTriggerTask.setQLabels(), DTLocalTriggerBaseTask.setQLabels(), MVAJetTagPlotter.tagInfoRequirements(), TauDQMHistPlotter.TauDQMHistPlotter(), edm::PrincipalGetAdapter.throwAmbiguousException(), and edm::EDConsumerBase.updateLookup().
list tablePrinter.lumidata |
Definition at line 64 of file tablePrinter.py.
list tablePrinter.lumifooter = [('%-*s'%(24,'189'),'%-*s'%(10,'17.89'),'%-*s'%(10,'16.1'),'%-*s'%(20,'3.47'))] |
Definition at line 73 of file tablePrinter.py.
list tablePrinter.lumiheader = [('%-*s'%(30,'Lumi Sections'),'%-*s'%(46,'Luminosity'))] |
Definition at line 70 of file tablePrinter.py.
Referenced by lumi::Lumi2DB.retrieveData().
Definition at line 54 of file tablePrinter.py.
Referenced by SiPixelRecHitsValid.fillBarrel(), SiPixelRecHitsValid.fillForward(), SiPixelActionExecutor.fillSummary(), pos::PixelCalibConfiguration.PixelCalibConfiguration(), MuonResidualsFitter.read(), SiPixelCalibConfiguration.SiPixelCalibConfiguration(), and MuonResidualsFitter.write().
int tablePrinter.width = 10 |
Definition at line 59 of file tablePrinter.py.