コード例 #1
0
ファイル: DOTExport.py プロジェクト: Moanwar/cmssw
 def __init__(self):
   FileExportPlugin.__init__(self)
   
   #could make these customizeable in the general options dict
   self.shapes={}
   self.shapes['EDProducer']='box'
   self.shapes['EDFilter']='invhouse'
   self.shapes['EDAnalyzer']='house'
   self.shapes['OutputModule']='invtrapezium'
   self.shapes['ESSource']='Mdiamond'     
   self.shapes['ESProducer']='Msquare'
   self.shapes['Source']='ellipse'
   self.shapes['Service']='diamond'
コード例 #2
0
ファイル: DOTExport.py プロジェクト: zflowers/cmssw
    def __init__(self):
        FileExportPlugin.__init__(self)

        #could make these customizeable in the general options dict
        self.shapes = {}
        self.shapes['EDProducer'] = 'box'
        self.shapes['EDFilter'] = 'invhouse'
        self.shapes['EDAnalyzer'] = 'house'
        self.shapes['OutputModule'] = 'invtrapezium'
        self.shapes['ESSource'] = 'Mdiamond'
        self.shapes['ESProducer'] = 'Msquare'
        self.shapes['Source'] = 'ellipse'
        self.shapes['Service'] = 'diamond'
コード例 #3
0
ファイル: JSONExport.py プロジェクト: archiesharma/muonPhase2
 def __init__(self):
   FileExportPlugin.__init__(self)