Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:51

0001 #ifndef RPCDigitizer_RPCEventDump_h
0002 #define RPCDigitizer_RPCEventDump_h
0003 
0004 /** \class RPCEventDump
0005  *   Class for the Digitizationn from Event Dump
0006  *
0007  *  \author Marcello Maggi -- INFN Bari
0008  */
0009 #include "FWCore/Framework/interface/MakerMacros.h"
0010 #include "FWCore/Framework/interface/one/EDProducer.h"
0011 
0012 class RPCEventDump : public edm::one::EDProducer<> {
0013 public:
0014   RPCEventDump(const edm::ParameterSet& config);
0015   ~RPCEventDump() override {}
0016   void produce(edm::Event& e, const edm::EventSetup& c) override;
0017 
0018 private:
0019   std::vector<std::string> filesed;
0020   bool rpcdigiprint;
0021 };
0022 #endif