CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 #ifndef RoadSearchCloudCleaner_h
00002 #define RoadSearchCloudCleaner_h
00003 
00004 //
00005 // Package:         RecoTracker/RoadSearchCloudCleaner
00006 // Class:           RoadSearchCloudCleaner
00007 // 
00008 // Description:     Calls RoadSeachCloudCleanerAlgorithm
00009 //                  to find RoadSearchClouds.
00010 //
00011 // Original Author: Steve Wagner, stevew@pizero.colorado.edu
00012 // Created:         Sat Feb 19 22:00:00 UTC 2006
00013 //
00014 // $Author: wmtan $
00015 // $Date: 2011/05/20 17:17:31 $
00016 // $Revision: 1.3 $
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 
00027 #include "RecoTracker/RoadSearchCloudCleaner/interface/RoadSearchCloudCleanerAlgorithm.h"
00028 
00029 namespace cms
00030 {
00031   class RoadSearchCloudCleaner : public edm::EDProducer
00032   {
00033   public:
00034 
00035     explicit RoadSearchCloudCleaner(const edm::ParameterSet& conf);
00036 
00037     virtual ~RoadSearchCloudCleaner();
00038 
00039     virtual void produce(edm::Event& e, const edm::EventSetup& c);
00040 
00041   private:
00042     RoadSearchCloudCleanerAlgorithm roadSearchCloudCleanerAlgorithm_;
00043     edm::ParameterSet conf_;
00044 
00045   };
00046 }
00047 
00048 
00049 #endif