Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:10

0001 #include "FWCore/Sources/interface/ProducerSourceFromFiles.h"
0002 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0003 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
0004 
0005 namespace edm {
0006   ProducerSourceFromFiles::ProducerSourceFromFiles(ParameterSet const& pset,
0007                                                    InputSourceDescription const& desc,
0008                                                    bool realData)
0009       : ProducerSourceBase(pset, desc, realData), FromFiles(pset) {}
0010 
0011   ProducerSourceFromFiles::~ProducerSourceFromFiles() {}
0012 
0013   void ProducerSourceFromFiles::fillDescription(ParameterSetDescription& desc) {
0014     ProducerSourceBase::fillDescription(desc);
0015     FromFiles::fillDescription(desc);
0016   }
0017 
0018   size_t ProducerSourceFromFiles::fileIndex() const { return FromFiles::fileIndex(); }
0019 }  // namespace edm