00001 #ifndef _ESRAWTODIGI_H_ 00002 #define _ESRAWTODIGI_H_ 00003 00004 #include "DataFormats/Common/interface/Handle.h" 00005 #include "FWCore/Framework/interface/Event.h" 00006 #include "FWCore/Framework/interface/EDProducer.h" 00007 #include "FWCore/MessageLogger/interface/MessageLogger.h" 00008 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00009 #include "EventFilter/ESRawToDigi/interface/ESUnpacker.h" 00010 00011 00012 00013 00014 class ESRawToDigi : public edm::EDProducer { 00015 00016 public: 00017 00018 ESRawToDigi(const edm::ParameterSet& ps); 00019 virtual ~ESRawToDigi(); 00020 00021 void produce(edm::Event& e, const edm::EventSetup& es); 00022 00023 private: 00024 00025 edm::InputTag sourceTag_; 00026 edm::InputTag fedsListLabel_; 00027 std::string ESdigiCollection_; 00028 bool regional_; 00029 00030 bool debug_; 00031 00032 ESUnpacker* ESUnpacker_; 00033 00034 }; 00035 00036 #endif