00001 #ifndef ANALYZER_VIS_PFRECHIT_H 00002 #define ANALYZER_VIS_PFRECHIT_H 00003 00004 #include "FWCore/Framework/interface/EDAnalyzer.h" 00005 00006 class edm::InputTag; 00007 00008 class VisPFRecHit : public edm::EDAnalyzer 00009 { 00010 public: 00011 VisPFRecHit(const edm::ParameterSet&); 00012 virtual ~VisPFRecHit() 00013 {} 00014 00015 virtual void analyze(const edm::Event&, const edm::EventSetup&); 00016 00017 private: 00018 edm::InputTag inputTag_; 00019 }; 00020 00021 #endif