@@ -72,14 +72,14 @@ void testmakepset::secsourceAux() {
7272 " process.maxEvents = cms.untracked.PSet(\n "
7373 " input = cms.untracked.int32(2)\n "
7474 " )\n "
75- " process.source = cms.Source('PoolSource ',\n "
75+ " process.source = cms.Source('FileBasedSource ',\n "
7676 " fileNames = cms.untracked.vstring('file:main.root')\n "
7777 " )\n "
78- " process.out = cms.OutputModule('PoolOutputModule ',\n "
78+ " process.out = cms.OutputModule('FileBasedOutputModule ',\n "
7979 " fileName = cms.string('file:CumHits.root')\n "
8080 " )\n "
8181 " process.mix = cms.EDFilter('MixingModule',\n "
82- " input = cms.SecSource('EmbeddedRootSource ',\n "
82+ " input = cms.SecSource('EmbeddedFileBasedSource ',\n "
8383 " fileNames = cms.untracked.vstring('file:pileup.root')\n "
8484 " ),\n "
8585 " max_bunch = cms.int32(3),\n "
@@ -101,7 +101,7 @@ void testmakepset::secsourceAux() {
101101 // Make sure this ParameterSet object has the right contents
102102 edm::ParameterSet const & mixingModuleParams = ps->getParameterSet (" mix" );
103103 edm::ParameterSet const & secondarySourceParams = mixingModuleParams.getParameterSet (" input" );
104- CPPUNIT_ASSERT (secondarySourceParams.getParameter <std::string>(" @module_type" ) == " EmbeddedRootSource " );
104+ CPPUNIT_ASSERT (secondarySourceParams.getParameter <std::string>(" @module_type" ) == " EmbeddedFileBasedSource " );
105105 CPPUNIT_ASSERT (secondarySourceParams.getParameter <std::string>(" @module_label" ) == " input" );
106106 CPPUNIT_ASSERT (secondarySourceParams.getUntrackedParameter <std::vector<std::string> >(" fileNames" )[0 ] ==
107107 " file:pileup.root" );
@@ -127,7 +127,7 @@ void testmakepset::usingBlockAux() {
127127 " process.maxEvents = cms.untracked.PSet(\n "
128128 " input = cms.untracked.int32(2)\n "
129129 " )\n "
130- " process.source = cms.Source('PoolSource ',\n "
130+ " process.source = cms.Source('FileBasedSource ',\n "
131131 " fileNames = cms.untracked.vstring('file:main.root')\n "
132132 " )\n "
133133 " process.b = cms.PSet(\n "
0 commit comments