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