CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/FWCore/Sources/src/ProducerSourceFromFiles.cc

Go to the documentation of this file.
00001 #include "FWCore/Sources/interface/ProducerSourceFromFiles.h"
00002 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00003 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
00004 
00005 namespace edm {
00006   ProducerSourceFromFiles::ProducerSourceFromFiles(ParameterSet const& pset, InputSourceDescription const& desc, bool realData) :
00007     ProducerSourceBase(pset, desc, realData),
00008     FromFiles(pset) {
00009   }
00010 
00011   ProducerSourceFromFiles::~ProducerSourceFromFiles() {}
00012 
00013   void
00014   ProducerSourceFromFiles::fillDescription(ParameterSetDescription & desc) {
00015     ProducerSourceBase::fillDescription(desc);
00016     FromFiles::fillDescription(desc);
00017   }
00018 }
00019