CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/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 
00010 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00011 #include "RecoTracker/SpecialSeedGenerators/interface/SeedGeneratorForCRack.h"
00012 
00013 
00014 class CRackSeedGenerator : public edm::EDProducer
00015 {
00016  public:
00017 
00018   explicit CRackSeedGenerator(const edm::ParameterSet& conf);
00019 
00020   virtual ~CRackSeedGenerator();
00021 
00022   virtual void produce(edm::Event& e, const edm::EventSetup& c);
00023 
00024  private:
00025   edm::ParameterSet conf_;
00026   SeedGeneratorForCRack  cosmic_seed;
00027 
00028 };
00029 
00030 #endif