CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/RecoTracker/RoadSearchHelixMaker/interface/RoadSearchHelixMaker.h

Go to the documentation of this file.
00001 #ifndef RoadSearchHelixMaker_h
00002 #define RoadSearchHelixMaker_h
00003 
00004 //
00005 // Package:         RecoTracker/RoadSearchHelixMaker
00006 // Class:           RoadSearchHelixMaker
00007 // 
00008 // Description:     Calls RoadSeachHelixMakerAlgorithm
00009 //                  to find simple Helices.
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:04:03 $
00016 // $Revision: 1.5 $
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/RoadSearchHelixMaker/interface/RoadSearchHelixMakerAlgorithm.h"
00029 
00030 namespace cms
00031 {
00032   class RoadSearchHelixMaker : public edm::EDProducer
00033   {
00034   public:
00035 
00036     explicit RoadSearchHelixMaker(const edm::ParameterSet& conf);
00037 
00038     virtual ~RoadSearchHelixMaker();
00039 
00040     virtual void produce(edm::Event& e, const edm::EventSetup& c);
00041 
00042   private:
00043     RoadSearchHelixMakerAlgorithm roadSearchHelixMakerAlgorithm_;
00044     edm::ParameterSet conf_;
00045 
00046   };
00047 }
00048 
00049 
00050 #endif