CMS 3D CMS Logo

PackingSetup.h
Go to the documentation of this file.
1 #ifndef EventFilter_L1TRawToDigi_PackingSetup_h
2 #define EventFilter_L1TRawToDigi_PackingSetup_h
3 
4 #include <map>
5 
7 
10 
13 
14 namespace edm {
15  class ConsumesCollector;
16  class Event;
17  class ParameterSet;
18  namespace stream {
19  class EDProducerBase;
20  }
21 }
22 
23 namespace l1t {
24  // Mapping of board id to list of unpackers. Different for each set of (FED, Firmware) ids.
25  typedef std::map<std::pair<int, int>, Packers> PackerMap;
26  // Mapping of block id to unpacker. Different for each set of (FED, Board, AMC, Firmware) ids.
27  typedef std::map<int, std::shared_ptr<Unpacker>> UnpackerMap;
28 
29  class PackingSetup {
30  public:
32  virtual ~PackingSetup() {};
33  virtual std::unique_ptr<PackerTokens> registerConsumes(const edm::ParameterSet&, edm::ConsumesCollector&) = 0;
34  virtual void registerProducts(edm::stream::EDProducerBase&) = 0;
35 
36  // Get a map of (amc #, board id) ↔ list of packing functions for a specific FED, FW combination
37  virtual PackerMap getPackers(int fed, unsigned int fw) = 0;
38 
39  // Get a map of Block IDs ↔ unpacker for a specific FED, board, AMC, FW combination
40  virtual UnpackerMap getUnpackers(int fed, int board , int amc, unsigned int fw) = 0;
41  virtual std::unique_ptr<UnpackerCollections> getCollections(edm::Event&) = 0;
42 
43  // Fill description with needed parameters for the setup, i.e.,
44  // special input tags
45  virtual void fillDescription(edm::ParameterSetDescription&) = 0;
46  };
47 
48 }
49 
50 #endif
delete x;
Definition: CaloConfig.h:22
std::vector< std::shared_ptr< Packer > > Packers
Definition: Packer.h:25
std::map< int, std::shared_ptr< Unpacker > > UnpackerMap
Definition: PackingSetup.h:27
virtual ~PackingSetup()
Definition: PackingSetup.h:32
HLT enums.
std::map< std::pair< int, int >, Packers > PackerMap
Definition: PackingSetup.h:25
Definition: AMCSpec.h:8