CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoRomanPot/RecoFP420/interface/ReconstructerFP420.h

Go to the documentation of this file.
00001 #ifndef ReconstructerFP420_h
00002 #define ReconstructerFP420_h
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/Framework/interface/Event.h"
00006 //#include "FWCore/Framework/interface/Handle.h"
00007 #include "FWCore/Framework/interface/EventSetup.h"
00008 
00009 #include "DataFormats/Common/interface/EDProduct.h"
00010 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00011 
00012 #include "RecoRomanPot/RecoFP420/interface/FP420RecoMain.h"
00013 
00014 #include "DataFormats/FP420Cluster/interface/TrackCollectionFP420.h"
00015 #include "DataFormats/FP420Cluster/interface/RecoFP420.h"
00016 #include "DataFormats/FP420Cluster/interface/RecoCollectionFP420.h"
00017 
00018 #include <string>
00019 #include<vector>
00020 #include<map>
00021 #include<iostream>
00022 
00023 
00024 
00025 namespace cms
00026 {
00027   class ReconstructerFP420: public edm::EDProducer
00028   {
00029   public:
00030     
00031     explicit ReconstructerFP420(const edm::ParameterSet& conf);
00032     //ReconstructerFP420();
00033     
00034     virtual ~ReconstructerFP420();
00035     
00036     virtual void beginJob();
00037     
00038     //  virtual void produce(ClusterCollectionFP420 &, RecoCollectionFP420 &);
00039     virtual void produce(edm::Event& e, const edm::EventSetup& c);
00040     
00041   private:
00042     typedef std::vector<std::string> vstring;
00043     edm::ParameterSet conf_;
00044     vstring trackerContainers;
00045 
00046     FP420RecoMain* sFP420RecoMain_;
00047     int verbosity;
00048     int VtxFlag;
00049     std::string m_genReadoutName;
00050 
00051   };
00052 }
00053 #endif