00001 #ifndef RoadSearchCloudMaker_h 00002 #define RoadSearchCloudMaker_h 00003 00004 // 00005 // Package: RecoTracker/RoadSearchCloudMaker 00006 // Class: RoadSearchCloudMaker 00007 // 00008 // Description: Calls RoadSeachCloudMakerAlgorithm 00009 // to find RoadSearchClouds. 00010 // 00011 // Original Author: Oliver Gutsche, gutsche@fnal.gov 00012 // Created: Sat Jan 14 22:00:00 UTC 2006 00013 // 00014 // $Author: gutsche $ 00015 // $Date: 2007/07/08 20:27:08 $ 00016 // $Revision: 1.6 $ 00017 // 00018 00019 #include "FWCore/Framework/interface/EDProducer.h" 00020 #include "FWCore/Framework/interface/Event.h" 00021 #include "DataFormats/Common/interface/Handle.h" 00022 #include "FWCore/Framework/interface/EventSetup.h" 00023 00024 #include "DataFormats/Common/interface/EDProduct.h" 00025 00026 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00027 #include "FWCore/ParameterSet/interface/InputTag.h" 00028 00029 #include "RecoTracker/RoadSearchCloudMaker/interface/RoadSearchCloudMakerAlgorithm.h" 00030 00031 class RoadSearchCloudMaker : public edm::EDProducer 00032 { 00033 public: 00034 00035 explicit RoadSearchCloudMaker(const edm::ParameterSet& conf); 00036 00037 virtual ~RoadSearchCloudMaker(); 00038 00039 virtual void produce(edm::Event& e, const edm::EventSetup& c); 00040 00041 private: 00042 RoadSearchCloudMakerAlgorithm roadSearchCloudMakerAlgorithm_; 00043 edm::ParameterSet conf_; 00044 edm::InputTag seedProducer_; 00045 edm::InputTag matchedStripRecHitsInputTag_; 00046 edm::InputTag rphiStripRecHitsInputTag_; 00047 edm::InputTag stereoStripRecHitsInputTag_; 00048 edm::InputTag pixelRecHitsInputTag_; 00049 00050 }; 00051 00052 #endif