CMS 3D CMS Logo

TotemVFATRawToDigi.cc
Go to the documentation of this file.
1 /****************************************************************************
2 *
3 * This is a part of TOTEM offline software.
4 * Authors:
5 * Jan Kašpar (jan.kaspar@gmail.com)
6 *
7 ****************************************************************************/
8 
15 
19 
21 
25 
29 
33 
35 
36 #include <string>
37 
38 //----------------------------------------------------------------------------------------------------
39 
41 {
42  public:
43  explicit TotemVFATRawToDigi(const edm::ParameterSet&);
44  ~TotemVFATRawToDigi() override;
45 
46  void produce(edm::Event&, const edm::EventSetup&) override;
47  void endStream() override;
48 
49  private:
51 
53 
54  std::vector<unsigned int> fedIds;
55 
57 
60 
61  template <typename DigiType>
62  void run(edm::Event&, const edm::EventSetup&);
63 };
64 
65 //----------------------------------------------------------------------------------------------------
66 
67 using namespace edm;
68 using namespace std;
69 
70 //----------------------------------------------------------------------------------------------------
71 
73  subSystemName(conf.getParameter<string>("subSystem")),
75  fedIds(conf.getParameter< vector<unsigned int> >("fedIds")),
76  rawDataUnpacker(conf.getParameterSet("RawUnpacking")),
77  rawToDigiConverter(conf.getParameterSet("RawToDigi"))
78 {
79  fedDataToken = consumes<FEDRawDataCollection>(conf.getParameter<edm::InputTag>("rawDataTag"));
80 
81  // validate chosen subSystem
82  if (subSystemName == "TrackingStrip")
84  else if (subSystemName == "TimingDiamond")
86  else if (subSystemName == "TotemTiming")
88 
89  if (subSystem == ssUndefined)
90  throw cms::Exception("TotemVFATRawToDigi::TotemVFATRawToDigi") << "Unknown sub-system string " << subSystemName << "." << endl;
91 
92  // FED (OptoRx) headers and footers
93  produces< vector<TotemFEDInfo> >(subSystemName);
94 
95  // declare products
97  produces< DetSetVector<TotemRPDigi> >(subSystemName);
98 
99  else if (subSystem == ssTimingDiamond)
100  produces< DetSetVector<CTPPSDiamondDigi> >(subSystemName);
101 
102  else if (subSystem == ssTotemTiming)
103  produces< DetSetVector<TotemTimingDigi> >(subSystemName);
104 
105  // set default IDs
106  if (fedIds.empty()) {
107  if (subSystem == ssTrackingStrip) {
109  fedIds.push_back(id);
110 
112  fedIds.push_back(id);
113  }
114 
115  else if (subSystem == ssTimingDiamond) {
117  fedIds.push_back(id);
118  }
119 
120  else if (subSystem == ssTotemTiming) {
122  fedIds.push_back(id);
123  }
124  }
125 
126  // conversion status
127  produces< DetSetVector<TotemVFATStatus> >(subSystemName);
128 }
129 
130 //----------------------------------------------------------------------------------------------------
131 
133 {
134 }
135 
136 //----------------------------------------------------------------------------------------------------
137 
139 {
140  if (subSystem == ssTrackingStrip)
141  run< DetSetVector<TotemRPDigi> >(event, es);
142 
143  else if (subSystem == ssTimingDiamond)
144  run< DetSetVector<CTPPSDiamondDigi> >(event, es);
145 
146  else if (subSystem == ssTotemTiming)
147  run< DetSetVector<TotemTimingDigi> >(event, es);
148 }
149 
150 //----------------------------------------------------------------------------------------------------
151 
152 template <typename DigiType>
154 {
155  // get DAQ mapping
157  es.get<TotemReadoutRcd>().get(subSystemName, mapping);
158 
159  // get analysis mask to mask channels
160  ESHandle<TotemAnalysisMask> analysisMask;
161  es.get<TotemReadoutRcd>().get(subSystemName, analysisMask);
162 
163  // raw data handle
165  event.getByToken(fedDataToken, rawData);
166 
167  // book output products
168  vector<TotemFEDInfo> fedInfo;
169  DigiType digi;
170  DetSetVector<TotemVFATStatus> conversionStatus;
171 
172  // raw-data unpacking
173  SimpleVFATFrameCollection vfatCollection;
174  for (const auto &fedId : fedIds)
175  {
176  const FEDRawData &data = rawData->FEDData(fedId);
177  if (data.size() > 0)
178  rawDataUnpacker.run(fedId, data, fedInfo, vfatCollection);
179  }
180 
181  // raw-to-digi conversion
182  rawToDigiConverter.run(vfatCollection, *mapping, *analysisMask, digi, conversionStatus);
183 
184  // commit products to event
185  event.put(make_unique<vector<TotemFEDInfo>>(fedInfo), subSystemName);
186  event.put(make_unique<DigiType>(digi), subSystemName);
187  event.put(make_unique<DetSetVector<TotemVFATStatus>>(conversionStatus), subSystemName);
188 }
189 
190 //----------------------------------------------------------------------------------------------------
191 
193 {
195 }
196 
T getParameter(std::string const &) const
Collection of code for unpacking of TOTEM raw-data.
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
ParameterSet const & getParameterSet(ParameterSetID const &id)
EventSetup record for TOTEM readout-related information.
int run(int fedId, const FEDRawData &data, std::vector< TotemFEDInfo > &fedInfoColl, SimpleVFATFrameCollection &coll) const
Unpack data from FED with fedId into `coll&#39; collection.
void run(edm::Event &, const edm::EventSetup &)
std::vector< unsigned int > fedIds
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
TotemVFATRawToDigi(const edm::ParameterSet &)
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
void printSummaries() const
Print error summaries.
Collection of code to convert TOTEM raw data into digi.
edm::EDGetTokenT< FEDRawDataCollection > fedDataToken
const T & get() const
Definition: EventSetup.h:59
ctpps::RawDataUnpacker rawDataUnpacker
HLT enums.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
RawToDigiConverter rawToDigiConverter
void produce(edm::Event &, const edm::EventSetup &) override
void run(const VFATFrameCollection &coll, const TotemDAQMapping &mapping, const TotemAnalysisMask &mask, edm::DetSetVector< TotemRPDigi > &digi, edm::DetSetVector< TotemVFATStatus > &status)
Creates RP digi.
enum TotemVFATRawToDigi::@391 subSystem
Definition: event.py:1
void endStream() override