CMS 3D CMS Logo

TestSourceProcess.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 class TestSourceProcess(cms.Process):
4  def __init__(self,name="TEST",*modifiers):
5  super(TestSourceProcess,self).__init__(name,*modifiers)
6  def fillProcessDesc(self, processPSet):
7  if not hasattr(self,"options"):
8  self.options = cms.untracked.PSet()
9  cms.Process.fillProcessDesc(self,processPSet)
def fillProcessDesc(self, processPSet)
def __init__(self, name="TEST", modifiers)