CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/FWCore/Sources/src/VectorInputSource.cc

Go to the documentation of this file.
00001 /*----------------------------------------------------------------------
00002 ----------------------------------------------------------------------*/
00003 #include "FWCore/Sources/interface/VectorInputSource.h"
00004 #include "FWCore/Framework/interface/EventPrincipal.h"
00005 
00006 namespace edm {
00007 
00008   VectorInputSource::VectorInputSource(ParameterSet const& pset, InputSourceDescription const& desc) :
00009     EDInputSource(pset, desc) {}
00010 
00011   VectorInputSource::~VectorInputSource() {}
00012 
00013   void
00014   VectorInputSource::dropUnwantedBranches(std::vector<std::string> const& wantedBranches) {
00015     this->dropUnwantedBranches_(wantedBranches);
00016   }
00017 
00018   void
00019   VectorInputSource::clearEventPrincipal(EventPrincipal& cache) {
00020     cache.clearEventPrincipal();
00021   }
00022 }