Go to the documentation of this file.00001 #ifndef RecoLocalTracker_SiStripClusterizer_h
00002 #define RecoLocalTracker_SiStripClusterizer_h
00003
00004 #include "FWCore/Framework/interface/Frameworkfwd.h"
00005 #include "FWCore/Framework/interface/EDProducer.h"
00006 #include "RecoLocalTracker/SiStripClusterizer/interface/StripClusterizerAlgorithm.h"
00007 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00008 #include "FWCore/Utilities/interface/InputTag.h"
00009
00010 #include <vector>
00011 #include <memory>
00012
00013 class SiStripClusterizer : public edm::EDProducer {
00014
00015 public:
00016
00017 explicit SiStripClusterizer(const edm::ParameterSet& conf);
00018 virtual void produce(edm::Event&, const edm::EventSetup&);
00019
00020 private:
00021
00022 template<class T> bool findInput(const edm::InputTag&, edm::Handle<T>&, const edm::Event&);
00023 const std::vector<edm::InputTag> inputTags;
00024 std::auto_ptr<StripClusterizerAlgorithm> algorithm;
00025
00026 };
00027
00028 #endif