Public Member Functions | |
def | testPrint |
Definition at line 34 of file printPaths.py.
def printPaths::TestPrintPath::testPrint | ( | self | ) |
Definition at line 35 of file printPaths.py.
00035 : 00036 p=cms.Process("Test") 00037 p.foo = cms.EDProducer("Foo") 00038 p.p = cms.Path(p.foo) 00039 printPath(p.p) 00040 00041 p=cms.Process("Test") 00042 p.foo = cms.EDProducer("Foo") 00043 p.bar = cms.EDProducer("Bar") 00044 p.p = cms.Path(p.foo*p.bar) 00045 printPath(p.p) 00046 00047 p=cms.Process("Test") 00048 p.foo = cms.EDProducer("Foo") 00049 p.bar = cms.EDProducer("Bar") 00050 p.s = cms.Sequence(p.foo*p.bar) 00051 p.fii = cms.EDProducer("Fii") 00052 p.p = cms.Path(p.s*p.fii) 00053 printPath(p.p) 00054 00055 printPaths(p) 00056 00057 unittest.main() unittest.main()