CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/RecoTracker/SpecialSeedGenerators/interface/CRackSeedGenerator.h

Go to the documentation of this file.
00001 #ifndef CRackSeedGenerator_h
00002 #define CRackSeedGenerator_h
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/Framework/interface/Event.h"
00006 #include "DataFormats/Common/interface/Handle.h"
00007 #include "FWCore/Framework/interface/EventSetup.h"
00008 
00009 #include "DataFormats/Common/interface/EDProduct.h"
00010 
00011 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00012 #include "RecoTracker/SpecialSeedGenerators/interface/SeedGeneratorForCRack.h"
00013 
00014 
00015 class CRackSeedGenerator : public edm::EDProducer
00016 {
00017  public:
00018 
00019   explicit CRackSeedGenerator(const edm::ParameterSet& conf);
00020 
00021   virtual ~CRackSeedGenerator();
00022 
00023   virtual void produce(edm::Event& e, const edm::EventSetup& c);
00024 
00025  private:
00026   edm::ParameterSet conf_;
00027   SeedGeneratorForCRack  cosmic_seed;
00028 
00029 };
00030 
00031 #endif