CMS 3D CMS Logo

CastorRawToDigi.cc
Go to the documentation of this file.
7 #include <fstream>
11 #include <iostream>
16 using namespace std;
17 
18 
20  dataTag_(conf.getParameter<edm::InputTag>("InputLabel")),
21  unpacker_(conf.getParameter<int>("CastorFirstFED"),conf.getParameter<int>("firstSample"),conf.getParameter<int>("lastSample")),
22  zdcunpacker_(conf.getParameter<int>("CastorFirstFED"),conf.getParameter<int>("firstSample"),conf.getParameter<int>("lastSample")),
23  ctdcunpacker_(conf.getParameter<int>("CastorFirstFED"),conf.getParameter<int>("firstSample"),conf.getParameter<int>("lastSample")),
24  filter_(conf.getParameter<bool>("FilterDataQuality"),conf.getParameter<bool>("FilterDataQuality"),false,0,0,-1),
25  fedUnpackList_(conf.getUntrackedParameter<std::vector<int> >("FEDs",std::vector<int>())),
26  firstFED_(conf.getParameter<int>("CastorFirstFED")),
27  complainEmptyData_(conf.getUntrackedParameter<bool>("ComplainEmptyData",false)),
28  usingctdc_(conf.getParameter<bool>("CastorCtdc")),
29  unpackTTP_(conf.getParameter<bool>("UnpackTTP")),
30  unpackZDC_(conf.getParameter<bool>("UnpackZDC")),
31  silent_(conf.getUntrackedParameter<bool>("silent",true)),
32  usenominalOrbitMessageTime_(conf.getParameter<bool>("UseNominalOrbitMessageTime")),
33  expectedOrbitMessageTime_(conf.getParameter<int>("ExpectedOrbitMessageTime"))
34 
35 {
36  if (fedUnpackList_.empty()) {
38  fedUnpackList_.push_back(i);
39  }
40 
42  std::ostringstream ss;
43  for (unsigned int i=0; i<fedUnpackList_.size(); i++)
44  ss << fedUnpackList_[i] << " ";
45  edm::LogInfo("CASTOR") << "CastorRawToDigi will unpack FEDs ( " << ss.str() << ")";
46 
47  // products produced...
48  produces<CastorDigiCollection>();
49  produces<ZDCDigiCollection>();
50  produces<CastorTrigPrimDigiCollection>();
51  produces<HcalUnpackerReport>();
52  if (unpackTTP_)
53  produces<HcalTTPDigiCollection>();
54 
55  tok_input_ = consumes<FEDRawDataCollection>(dataTag_);
56 
57 }
58 
59 // Virtual destructor needed.
61 
62 // Functions that gets called by framework every event
64 {
65  // Step A: Get Inputs
67  e.getByToken(tok_input_,rawraw);
68  // get the mapping
70  es.get<CastorDbRecord>().get( pSetup );
71  const CastorElectronicsMap* readoutMap=pSetup->getCastorMapping();
72 
73  // Step B: Create empty output : three vectors for three classes...
74  std::vector<CastorDataFrame> castor;
75  std::vector<ZDCDataFrame> zdc;
76  std::vector<HcalTTPDigi> ttp;
77  std::vector<CastorTriggerPrimitiveDigi> htp;
78 
79  auto report = std::make_unique<HcalUnpackerReport>();
80 
82  colls.castorCont=&castor;
83  colls.zdcCont=&zdc;
84  if (unpackTTP_) colls.ttp=&ttp;
85  colls.tpCont=&htp;
86 
87  // Step C: unpack all requested FEDs
88  const FEDRawData& fed722 = rawraw->FEDData(722);
89  const int fed722size = fed722.size();
90  const FEDRawData& fed693 = rawraw->FEDData(693);
91  const int fed693size = fed693.size();
92  for (std::vector<int>::const_iterator i=fedUnpackList_.begin(); i!=fedUnpackList_.end(); i++) {
93  const FEDRawData& fed = rawraw->FEDData(*i);
94  //std::cout<<"Fed number "<<*i<<"is being worked on"<<std::endl;
95  if (*i == 693 && fed693size == 0 && fed722size != 0)
96  continue;
97  if (*i == 722 && fed722size == 0 && fed693size != 0)
98  continue;
99 
100  if (*i!=693 && *i!=722)
101  {
102  if (fed.size()==0)
103  {
104  if (complainEmptyData_)
105  {
106  edm::LogWarning("EmptyData") << "No data for FED " << *i;
107  report->addError(*i);
108  }
109  }
110  else if (fed.size()<8*3)
111  {
112  edm::LogWarning("EmptyData") << "Tiny data " << fed.size() << " for FED " << *i;
113  report->addError(*i);
114  }
115  else
116  {
117  try
118  {
119  if ( usingctdc_ )
120  {
121  ctdcunpacker_.unpack(fed,*readoutMap,colls, *report);
122  }
123  else
124  {
125  unpacker_.unpack(fed,*readoutMap,colls, *report);
126  }
127  report->addUnpacked(*i);
128  }
129  catch (cms::Exception& e)
130  {
131  edm::LogWarning("Unpacking error") << e.what();
132  report->addError(*i);
133  } catch (...)
134  {
135  edm::LogWarning("Unpacking exception");
136  report->addError(*i);
137  }
138  }
139  }
140 
141  if (*i==693 && unpackZDC_)
142  {
143  if (fed.size()==0)
144  {
145  if (complainEmptyData_)
146  {
147  edm::LogWarning("EmptyData") << "No data for FED " << *i;
148  report->addError(*i);
149  }
150  }
151  if (fed.size()!=0)
152  {
153  zdcunpacker_.unpack(fed,*readoutMap,colls,*report);
154  report->addUnpacked(*i);
155  }
156  }
157 
158  if (*i==722 && unpackZDC_)
159  {
160  if (fed.size()==0)
161  {
162  if (complainEmptyData_)
163  {
164  edm::LogWarning("EmptyData") << "No data for FED " << *i;
165  report->addError(*i);
166  }
167  }
168  if (fed.size()!=0)
169  {
170  zdcunpacker_.unpack(fed,*readoutMap,colls,*report);
171  report->addUnpacked(*i);
172  }
173  }
174 
175  }//end of loop over feds
176 
177  // Step B: encapsulate vectors in actual collections
178  auto castor_prod = std::make_unique<CastorDigiCollection>();
179  auto htp_prod = std::make_unique<CastorTrigPrimDigiCollection>();
180 
181  castor_prod->swap_contents(castor);
182  htp_prod->swap_contents(htp);
183 
184  // Step C2: filter FEDs, if required
185  if (filter_.active()) {
186  CastorDigiCollection filtered_castor=filter_.filter(*castor_prod,*report);
187 
188  castor_prod->swap(filtered_castor);
189  }
190 
191  // Step D: Put outputs into event
192  // just until the sorting is proven
193  castor_prod->sort();
194  htp_prod->sort();
195 
196  if(unpackZDC_)
197  {
198  auto zdc_prod = std::make_unique<ZDCDigiCollection>();
199  zdc_prod->swap_contents(zdc);
200 
201  zdc_prod->sort();
202  e.put(std::move(zdc_prod));
203  }
204 
205  e.put(std::move(castor_prod));
206  e.put(std::move(htp_prod));
207 
208  if (unpackTTP_) {
209  auto prod = std::make_unique<HcalTTPDigiCollection>();
210  prod->swap_contents(ttp);
211 
212  prod->sort();
213  e.put(std::move(prod));
214  }
215  e.put(std::move(report));
216 }
219  if ( irun.run() > 132640 ) {
221  } else if ( irun.run() > 132174 ) {
223  } else if ( irun.run() > 124371 ) {
225  } else if ( irun.run() > 123984 ) {
227  } else if ( irun.run() > 123584 ) {
229  } else {
231  }
233  }
234 }
235 
CastorDataFrameFilter filter_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:136
RunNumber_t run() const
Definition: RunBase.h:40
ZdcUnpacker zdcunpacker_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
CastorDigiCollection filter(const CastorDigiCollection &incol, HcalUnpackerReport &r)
filter Castor data frames
CastorUnpacker unpacker_
void swap(SortedCollection &other)
char const * what() const override
Definition: Exception.cc:141
CastorCtdcUnpacker ctdcunpacker_
std::vector< int > fedUnpackList_
void beginRun(edm::Run const &, edm::EventSetup const &) override
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
edm::InputTag dataTag_
void unpack(const FEDRawData &raw, const CastorElectronicsMap &emap, CastorRawCollections &conts, HcalUnpackerReport &report, bool silent=false)
For histograms, no begin and end.
edm::EDGetTokenT< FEDRawDataCollection > tok_input_
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
void unpack(const FEDRawData &raw, const CastorElectronicsMap &emap, CastorRawCollections &conts, HcalUnpackerReport &report)
void setExpectedOrbitMessageTime(int time)
bool active() const
whether any filters are on
CastorRawToDigi(const edm::ParameterSet &ps)
std::vector< CastorDataFrame > * castorCont
const CastorElectronicsMap * getCastorMapping() const
void unpack(const FEDRawData &raw, const CastorElectronicsMap &emap, CastorRawCollections &conts, HcalUnpackerReport &report, bool silent=false)
For histograms, no begin and end.
Definition: ZdcUnpacker.cc:98
const T & get() const
Definition: EventSetup.h:58
bool usenominalOrbitMessageTime_
HLT enums.
~CastorRawToDigi() override
void produce(edm::Event &e, const edm::EventSetup &c) override
def move(src, dest)
Definition: eostools.py:510
Definition: Run.h:43