CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC4_patch1/src/EventFilter/CSCRawToDigi/src/CSCDigiToRawModule.h

Go to the documentation of this file.
00001 #ifndef EventFilter_CSCDigiToRawModule_h
00002 #define EventFilter_CSCDigiToRawModule_h
00003 
00011 #include <FWCore/Framework/interface/EDProducer.h>
00012 #include "FWCore/Utilities/interface/InputTag.h"
00013 
00014 class CSCDigiToRaw;
00015 
00016 class CSCDigiToRawModule : public edm::EDProducer {
00017  public:
00019   CSCDigiToRawModule(const edm::ParameterSet & pset);
00020 
00022   virtual ~CSCDigiToRawModule();
00023 
00024   // Operations
00025   virtual void produce( edm::Event&, const edm::EventSetup& );
00026 
00027  private:
00028   CSCDigiToRaw * packer;
00029   edm::InputTag theStripDigiTag;
00030   edm::InputTag theWireDigiTag;
00031   edm::InputTag theComparatorDigiTag;
00032   edm::InputTag theALCTDigiTag;
00033   edm::InputTag theCLCTDigiTag;
00034   edm::InputTag thePreTriggerTag;
00035   edm::InputTag theCorrelatedLCTDigiTag;
00036 };
00037 #endif
00038 
00039