CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/RecoTracker/RoadSearchCloudMaker/interface/RoadSearchCloudMaker.h

Go to the documentation of this file.
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: wmtan $
00015 // $Date: 2011/05/20 17:17:32 $
00016 // $Revision: 1.8 $
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 
00025 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00026 #include "FWCore/Utilities/interface/InputTag.h"
00027 
00028 #include "RecoTracker/RoadSearchCloudMaker/interface/RoadSearchCloudMakerAlgorithm.h"
00029 
00030 class RoadSearchCloudMaker : public edm::EDProducer
00031 {
00032 public:
00033 
00034   explicit RoadSearchCloudMaker(const edm::ParameterSet& conf);
00035 
00036   virtual ~RoadSearchCloudMaker();
00037 
00038   virtual void produce(edm::Event& e, const edm::EventSetup& c);
00039 
00040 private:
00041   RoadSearchCloudMakerAlgorithm roadSearchCloudMakerAlgorithm_;
00042   edm::ParameterSet conf_;
00043   edm::InputTag     seedProducer_;
00044   edm::InputTag     matchedStripRecHitsInputTag_;
00045   edm::InputTag     rphiStripRecHitsInputTag_;
00046   edm::InputTag     stereoStripRecHitsInputTag_;
00047   edm::InputTag     pixelRecHitsInputTag_;
00048 
00049 };
00050 
00051 #endif