Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:58

0001 #include "EventFilter/RPCRawToDigi/plugins/RPCAMCUnpacker.h"
0002 
0003 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
0004 
0005 RPCAMCUnpacker::RPCAMCUnpacker(edm::ParameterSet const&, edm::ConsumesCollector, edm::ProducesCollector) {}
0006 RPCAMCUnpacker::~RPCAMCUnpacker() {}
0007 
0008 void RPCAMCUnpacker::fillDescription(edm::ParameterSetDescription& desc) {
0009   edm::ParameterSetDescription pset;
0010   pset.add<bool>("fillAMCCounters", true);
0011   pset.add<int>("bxMin", -2);
0012   pset.add<int>("bxMax", +2);
0013   pset.add<int>("cppfDaqDelay", 0);
0014   desc.add<edm::ParameterSetDescription>("RPCAMCUnpackerSettings", pset);
0015 }
0016 
0017 void RPCAMCUnpacker::beginRun(edm::Run const& run, edm::EventSetup const& setup) {}
0018 
0019 void RPCAMCUnpacker::produce(edm::Event& event,
0020                              edm::EventSetup const& setup,
0021                              std::map<RPCAMCLink, rpcamc13::AMCPayload> const& amc_payload) {}
0022 
0023 #include "FWCore/Framework/interface/MakerMacros.h"
0024 #include "EventFilter/RPCRawToDigi/plugins/RPCAMCUnpackerFactory.h"
0025 DEFINE_EDM_PLUGIN(RPCAMCUnpackerFactory, RPCAMCUnpacker, "RPCAMCUnpacker");