CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RawDataCollectorByLabel.cc
Go to the documentation of this file.
1 
10 
16 
18 
19 #include <iostream>
20 
21 using namespace edm;
22 
24  inputTags_ = pset.getParameter<std::vector<InputTag> >("RawCollectionList");
25  verbose_ = pset.getUntrackedParameter<int>("verbose", 0);
26 
27  inputTokens_.reserve(inputTags_.size());
28  for (tag_iterator_t inputTag = inputTags_.begin(); inputTag != inputTags_.end(); ++inputTag) {
29  inputTokens_.push_back(consumes<FEDRawDataCollection>(*inputTag));
30  }
31  produces<FEDRawDataCollection>();
32 }
33 
35 
38  std::vector<Handle<FEDRawDataCollection> > rawData;
39  rawData.reserve(inputTokens_.size());
40  for (tok_iterator_t inputTok = inputTokens_.begin(); inputTok != inputTokens_.end(); ++inputTok) {
42  if (e.getByToken(*inputTok, input)) {
43  rawData.push_back(input);
44  }
45  //else{ //skipping the inputtag requested. but this is a normal operation to bare data & MC. silent warning }
46  }
47 
48  auto producedData = std::make_unique<FEDRawDataCollection>();
49 
50  for (unsigned int i = 0; i < rawData.size(); ++i) {
51  const FEDRawDataCollection *rdc = rawData[i].product();
52 
53  if (verbose_ > 0) {
54  std::cout << "\nRAW collection #" << i + 1 << std::endl;
55  std::cout << "branch name = " << rawData[i].provenance()->branchName() << std::endl;
56  std::cout << "process index = " << rawData[i].provenance()->productID().processIndex() << std::endl;
57  }
58 
59  for (int j = 0; j < FEDNumbering::MAXFEDID; ++j) {
60  const FEDRawData &fedData = rdc->FEDData(j);
61  size_t size = fedData.size();
62 
63  if (size > 0) {
64  // this fed has data -- lets copy it
65  if (verbose_ > 1)
66  std::cout << "Copying data from FED #" << j << std::endl;
67  FEDRawData &fedDataProd = producedData->FEDData(j);
68  if (fedDataProd.size() != 0) {
69  if (verbose_ > 1) {
70  std::cout << " More than one FEDRawDataCollection with data in FED ";
71  std::cout << j << " Skipping the 2nd\n";
72  }
73  continue;
74  }
75  fedDataProd.resize(size);
76  unsigned char *dataProd = fedDataProd.data();
77  const unsigned char *data = fedData.data();
78  for (unsigned int k = 0; k < size; ++k) {
79  dataProd[k] = data[k];
80  }
81  }
82  }
83  }
84 
85  // Insert the new product in the event
86  e.put(std::move(producedData));
87 }
T getUntrackedParameter(std::string const &, T const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
const edm::EventSetup & c
std::vector< edm::InputTag >::const_iterator tag_iterator_t
std::vector< edm::EDGetTokenT< FEDRawDataCollection > >::const_iterator tok_iterator_t
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
static std::string const input
Definition: EdmProvDump.cc:47
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
void resize(size_t newsize)
Definition: FEDRawData.cc:28
~RawDataCollectorByLabel() override
Destructor.
def move
Definition: eostools.py:511
void produce(edm::Event &e, const edm::EventSetup &c) override
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24
RawDataCollectorByLabel(const edm::ParameterSet &pset)
Constructor.
tuple cout
Definition: gather_cfg.py:144
tuple size
Write out results.