00001 #ifndef CSCDCCUnpacker_h 00002 #define CSCDCCUnpacker_h 00003 00012 #include <FWCore/Framework/interface/EDProducer.h> 00013 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00014 #include <FWCore/ParameterSet/interface/ParameterSet.h> 00015 #include "FWCore/ParameterSet/interface/InputTag.h" 00016 00017 class CSCMonitorInterface; 00018 00019 class CSCDCCUnpacker: public edm::EDProducer { 00020 public: 00022 CSCDCCUnpacker(const edm::ParameterSet & pset); 00023 00025 virtual ~CSCDCCUnpacker(); 00026 00028 void produce(edm::Event & e, const edm::EventSetup& c); 00029 00030 00031 00032 00033 private: 00034 00035 bool debug, printEventNumber, goodEvent, useExaminer, unpackStatusDigis, unpackMTCCData; 00036 bool useSelectiveUnpacking; 00037 int numOfEvents; 00038 unsigned int errorMask, examinerMask; 00039 bool instatiateDQM; 00040 CSCMonitorInterface * monitor; 00041 edm::InputTag inputObjectsTag; // input tag labelling raw data for input 00042 00043 00044 00045 }; 00046 00047 #endif