CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SubdetFEDSelector.cc
Go to the documentation of this file.
1 // user include files
7 
11 
13 
15 public:
17  ~SubdetFEDSelector() override;
18  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
19 
20 private:
21  void beginJob() override {}
22  void produce(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
23  void endJob() override {}
24 
25  // ----------member data ---------------------------
26  bool getEcal_;
27  bool getHcal_;
28  bool getStrip_;
29  bool getPixel_;
30  bool getMuon_;
32 
34 };
35 
37  getEcal_ = iConfig.getParameter<bool>("getECAL");
38  getStrip_ = iConfig.getParameter<bool>("getSiStrip");
39  getPixel_ = iConfig.getParameter<bool>("getSiPixel");
40  getHcal_ = iConfig.getParameter<bool>("getHCAL");
41  getMuon_ = iConfig.getParameter<bool>("getMuon");
42  getTrigger_ = iConfig.getParameter<bool>("getTrigger");
43 
44  tok_raw_ = consumes<FEDRawDataCollection>(iConfig.getParameter<edm::InputTag>("rawInputLabel"));
45 
46  produces<FEDRawDataCollection>();
47 }
48 
50 
52  auto producedData = std::make_unique<FEDRawDataCollection>();
53 
55  iEvent.getByToken(tok_raw_, rawIn);
56 
57  std::vector<int> selFEDs;
58 
59  if (getEcal_) {
61  selFEDs.push_back(i);
62  }
64  selFEDs.push_back(i);
65  }
66  }
67 
68  if (getMuon_) {
70  selFEDs.push_back(i);
71  }
73  selFEDs.push_back(i);
74  }
76  selFEDs.push_back(i);
77  }
79  selFEDs.push_back(i);
80  }
82  selFEDs.push_back(i);
83  }
85  selFEDs.push_back(i);
86  }
88  selFEDs.push_back(i);
89  }
91  selFEDs.push_back(i);
92  }
93  }
94 
95  if (getHcal_) {
97  selFEDs.push_back(i);
98  }
99  }
100 
101  if (getStrip_) {
103  selFEDs.push_back(i);
104  }
105  }
106 
107  if (getPixel_) {
109  selFEDs.push_back(i);
110  }
111  }
112 
113  if (getTrigger_) {
115  selFEDs.push_back(i);
116  }
118  selFEDs.push_back(i);
119  }
121  selFEDs.push_back(i);
122  }
124  selFEDs.push_back(i);
125  }
127  selFEDs.push_back(i);
128  }
129 
131  selFEDs.push_back(i);
132  }
133 
135  selFEDs.push_back(i);
136  }
137 
139  selFEDs.push_back(i);
140  }
141 
143  selFEDs.push_back(i);
144  }
145 
147  selFEDs.push_back(i);
148  }
150  selFEDs.push_back(i);
151  }
152 
154  selFEDs.push_back(i);
155  }
157  selFEDs.push_back(i);
158  }
160  selFEDs.push_back(i);
161  }
162  }
163 
165  selFEDs.push_back(i);
166  }
167 
168  // Copying:
169  const FEDRawDataCollection* rdc = rawIn.product();
170 
171  // if ( ( rawData[i].provenance()->processName() != e.processHistory().rbegin()->processName() ) )
172  // continue ; // skip all raw collections not produced by the current process
173 
174  for (int j = 0; j < FEDNumbering::MAXFEDID; ++j) {
175  bool rightFED = false;
176  for (uint32_t k = 0; k < selFEDs.size(); k++) {
177  if (j == selFEDs[k]) {
178  rightFED = true;
179  }
180  }
181  if (!rightFED)
182  continue;
183  const FEDRawData& fedData = rdc->FEDData(j);
184  size_t size = fedData.size();
185 
186  if (size > 0) {
187  // this fed has data -- lets copy it
188  FEDRawData& fedDataProd = producedData->FEDData(j);
189  if (fedDataProd.size() != 0) {
190  // std::cout << " More than one FEDRawDataCollection with data in FED ";
191  // std::cout << j << " Skipping the 2nd\n";
192  continue;
193  }
194  fedDataProd.resize(size);
195  unsigned char* dataProd = fedDataProd.data();
196  const unsigned char* data = fedData.data();
197  for (unsigned int k = 0; k < size; ++k) {
198  dataProd[k] = data[k];
199  }
200  }
201  }
202 
203  iEvent.put(std::move(producedData));
204 }
205 
208  desc.add<edm::InputTag>("rawInputLabel", edm::InputTag("rawDataCollector"));
209  desc.add<bool>("getSiPixel", true);
210  desc.add<bool>("getHCAL", true);
211  desc.add<bool>("getECAL", false);
212  desc.add<bool>("getMuon", false);
213  desc.add<bool>("getTrigger", true);
214  desc.add<bool>("getSiStrip", false);
215  descriptions.add("subdetFED", desc);
216 }
217 
220 
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
int iEvent
Definition: GenABIO.cc:224
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
void resize(size_t newsize)
Definition: FEDRawData.cc:28
def move
Definition: eostools.py:511
void endJob() override
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
ParameterDescriptionBase * add(U const &iLabel, T const &value)
SubdetFEDSelector(const edm::ParameterSet &)
~SubdetFEDSelector() override
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< FEDRawDataCollection > tok_raw_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
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
void beginJob() override
tuple size
Write out results.