CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/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: gutsche $
00015 // $Date: 2007/03/07 22:00:09 $
00016 // $Revision: 1.2 $
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 
00028 #include "RecoTracker/RoadSearchCloudCleaner/interface/RoadSearchCloudCleanerAlgorithm.h"
00029 
00030 namespace cms
00031 {
00032   class RoadSearchCloudCleaner : public edm::EDProducer
00033   {
00034   public:
00035 
00036     explicit RoadSearchCloudCleaner(const edm::ParameterSet& conf);
00037 
00038     virtual ~RoadSearchCloudCleaner();
00039 
00040     virtual void produce(edm::Event& e, const edm::EventSetup& c);
00041 
00042   private:
00043     RoadSearchCloudCleanerAlgorithm roadSearchCloudCleanerAlgorithm_;
00044     edm::ParameterSet conf_;
00045 
00046   };
00047 }
00048 
00049 
00050 #endif