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