Functions | |
def | getEdmReport |
def | parseEdmSize |
Variables | |
tuple | edmSize_line_parsing_reg |
tuple | test_edm_file = re.compile("_EdmSize$", re.IGNORECASE) |
def parserEdmSize.getEdmReport | ( | path, | |
candle, | |||
step | |||
) |
Definition at line 42 of file parserEdmSize.py.
References FileNamesHelper.f_candle_and_step_inJobID, FileNamesHelper.getJobID_fromEdmSizeFileName(), and parseEdmSize().
Referenced by cmsPerfSuiteHarvest.process_timesize_dir().
def parserEdmSize.parseEdmSize | ( | lines | ) |
Returns a list of dictionaries Example of data: >>> parseEdmSize(lines = ( 'File MINBIAS__RAW2DIGI,RECO.root Events 8000', 'TrackingRecHitsOwned_generalTracks__RECO. 407639 18448.4', 'recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_multi5x5PreshowerXClustersShape_RECO. 289.787 41.3311', 'recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_multi5x5PreshowerYClustersShape_RECO. 289.767 47.2686', 'recoCaloClustersToOnerecoClusterShapesAssociation_hybridSuperClusters_hybridShapeAssoc_RECO. 272.111 65.4852')) [{'module_name': 'generalTracks', 'module_label': '', 'size_compressed': '18448.4', 'cpp_type': 'TrackingRecHitsOwned', 'size_uncompressed': '407639'}, {'module_name': 'multi5x5PreshowerClusterShape', 'module_label': 'multi5x5PreshowerXClustersShape', 'size_compressed': '41.3311', 'cpp_type': 'recoPreshowerClusterShapes', 'size_uncompressed': '289.787'}, {'module_name': 'multi5x5PreshowerClusterShape', 'module_label': 'multi5x5PreshowerYClustersShape', 'size_compressed': '47.2686', 'cpp_type': 'recoPreshowerClusterShapes', 'size_uncompressed': '289.767'}, {'module_name': 'hybridSuperClusters', 'module_label': 'hybridShapeAssoc', 'size_compressed': '65.4852', 'cpp_type': 'recoCaloClustersToOnerecoClusterShapesAssociation', 'size_uncompressed': '272.111'}]
Definition at line 20 of file parserEdmSize.py.
Referenced by getEdmReport().
tuple parserEdmSize.edmSize_line_parsing_reg |
Definition at line 11 of file parserEdmSize.py.
tuple parserEdmSize.test_edm_file = re.compile("_EdmSize$", re.IGNORECASE) |
Definition at line 5 of file parserEdmSize.py.